From 499ecee8c7399364bb6e2a89ef96d24b6cfb9c5b Mon Sep 17 00:00:00 2001
From: redanthrax
Date: Mon, 24 Jul 2023 12:39:34 -0700
Subject: [PATCH 01/56] fix launch settings for https node 18 enforcement
---
.vscode/launch.json | 2 +-
package.json | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.vscode/launch.json b/.vscode/launch.json
index e8f4c409c8fb..ba5cb9a0aceb 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -9,7 +9,7 @@
"cwd": "${file}"
},
{
- "command": "npm run start-api",
+ "command": "npm run start-swa",
"name": "Run emulator",
"request": "launch",
"type": "node-terminal"
diff --git a/package.json b/package.json
index 7d4a99103c8f..967975c415d8 100644
--- a/package.json
+++ b/package.json
@@ -17,11 +17,11 @@
"changelog": "auto-changelog --starting-version 3.0.0 --commit-limit false --hide-credit",
"eject": "react-scripts eject",
"lint": "eslint \"src/**/*.js\"",
- "start": "react-scripts start",
+ "start": "set HTTPS=true&&set SSL_CRT_FILE=./.vscode/cert.crt&&set SSL_KEY_FILE=./.vscode/key.key&&react-scripts start",
"test": "react-scripts test",
"test:cov": "npm test -- --coverage --watchAll=false",
"test:debug": "react-scripts --inspect-brk test --runInBand",
- "start-api": "swa start --ssl --ssl-cert ./.vscode/cert.crt --ssl-key ./.vscode/key.key --swa-config-location .vscode http://localhost:3000 --api-location http://localhost:7071",
+ "start-swa": "swa start --ssl --ssl-cert ./.vscode/cert.crt --ssl-key ./.vscode/key.key --swa-config-location .vscode https://localhost:3000 --api-location http://localhost:7071",
"prepare": "husky install"
},
"config": {
@@ -98,7 +98,7 @@
"stylelint-order": "^5.0.0"
},
"engines": {
- "node": "16",
+ "node": "18",
"npm": ">=7"
}
}
From 087c1ea215b4d71c4911a8f885fb18651d76eb88 Mon Sep 17 00:00:00 2001
From: PeakeIT <99491416+PeakeIT@users.noreply.github.com>
Date: Mon, 24 Jul 2023 16:51:27 -0400
Subject: [PATCH 02/56] Correct client Azure portal link
---
src/views/home/Home.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/home/Home.js b/src/views/home/Home.js
index 957c36d4e933..9e3741288987 100644
--- a/src/views/home/Home.js
+++ b/src/views/home/Home.js
@@ -115,7 +115,7 @@ const Home = () => {
},
{
label: 'Azure',
- link: `https://portal.azure.com/?tid=${currentTenant.defaultDomainName}`,
+ link: `https://portal.azure.com/#@${currentTenant.customerId}`,
icon: faServer,
},
{
From 7a99a68cb83de6ad8a610798de86cc14fd9e1b49 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Tue, 25 Jul 2023 09:50:14 +0200
Subject: [PATCH 03/56] fix lost marker.
---
.../tenant/standards/ListAppliedStandards.js | 36 +++++++++++++++----
1 file changed, 30 insertions(+), 6 deletions(-)
diff --git a/src/views/tenant/standards/ListAppliedStandards.js b/src/views/tenant/standards/ListAppliedStandards.js
index 26912a7b6d89..c3f7b634c7ab 100644
--- a/src/views/tenant/standards/ListAppliedStandards.js
+++ b/src/views/tenant/standards/ListAppliedStandards.js
@@ -183,9 +183,13 @@ const ListAppliedStandards = () => {
.filter((obj) => obj.cat === 'Global')
.map((item, key) => (
<>
- {console.log(item.name)}
-
+
{item.addedComponent && (
{item.addedComponent.type === 'Select' ? (
@@ -218,7 +222,12 @@ const ListAppliedStandards = () => {
.map((item, key) => (
<>
-
+
{item.addedComponent && (
{item.addedComponent.type === 'Select' ? (
@@ -251,7 +260,12 @@ const ListAppliedStandards = () => {
.map((item, key) => (
<>
-
+
{item.addedComponent && (
{item.addedComponent.type === 'Select' ? (
@@ -284,7 +298,12 @@ const ListAppliedStandards = () => {
.map((item, key) => (
<>
-
+
{item.addedComponent && (
{item.addedComponent.type === 'Select' ? (
@@ -317,7 +336,12 @@ const ListAppliedStandards = () => {
.map((item, key) => (
<>
-
+
{item.addedComponent && (
{item.addedComponent.type === 'Select' ? (
From 281767ce500f48f1fcefad88b38bfc465bdd4563 Mon Sep 17 00:00:00 2001
From: redanthrax
Date: Tue, 25 Jul 2023 13:08:02 -0700
Subject: [PATCH 04/56] standards tooltip added onedrive shortcut standard
---
src/components/forms/RFFComponents.js | 42 +++++--
src/data/standards.json | 113 ++++++++++--------
src/views/tenant/standards/ApplyStandard.js | 35 +++++-
.../tenant/standards/ListAppliedStandards.js | 5 +
4 files changed, 124 insertions(+), 71 deletions(-)
diff --git a/src/components/forms/RFFComponents.js b/src/components/forms/RFFComponents.js
index bda737a33a19..a360ec2fc49e 100644
--- a/src/components/forms/RFFComponents.js
+++ b/src/components/forms/RFFComponents.js
@@ -7,6 +7,7 @@ import {
CFormSwitch,
CFormTextarea,
CSpinner,
+ CTooltip,
} from '@coreui/react'
import Select from 'react-select'
import AsyncSelect from 'react-select/async'
@@ -75,9 +76,14 @@ RFFCFormCheck.propTypes = {
...sharedPropTypes,
}
+function ConditionWrapper({ condition, wrapper, children }) {
+ return condition ? wrapper(children) : children
+}
+
export const RFFCFormSwitch = ({
name,
label,
+ helpText,
sublabel,
className = 'mb-3',
validate,
@@ -86,19 +92,28 @@ export const RFFCFormSwitch = ({
return (
{({ meta, input }) => (
-
-
- {input.value && }
- {sublabel}
-
+ (
+
+ {children}
+
+ )}
+ >
+
+
+ {input.value && }
+ {sublabel}
+
+
)}
)
@@ -106,6 +121,7 @@ export const RFFCFormSwitch = ({
RFFCFormSwitch.propTypes = {
...sharedPropTypes,
+ helpText: PropTypes.string,
}
export const RFFCFormInput = ({
diff --git a/src/data/standards.json b/src/data/standards.json
index db21afee83f6..5139f1e4b311 100644
--- a/src/data/standards.json
+++ b/src/data/standards.json
@@ -2,7 +2,7 @@
{
"name": "standards.MailContacts.GeneralContact.Enabled",
"cat": "Global",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "input",
"name": "standards.MailContacts.GeneralContact.Mail",
@@ -13,7 +13,7 @@
{
"name": "standards.MailContacts.SecurityContact.Enabled",
"cat": "Global",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "input",
"name": "standards.MailContacts.SecurityContact.Mail",
@@ -24,7 +24,7 @@
{
"name": "standards.MailContacts.MarketingContact.Enabled",
"cat": "Global",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "input",
"name": "standards.MailContacts.MarketingContact.Mail",
@@ -35,7 +35,7 @@
{
"name": "standards.MailContacts.TechContact.Enabled",
"cat": "Global",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "input",
"name": "standards.MailContacts.TechContact.Mail",
@@ -46,35 +46,35 @@
{
"name": "standards.AuditLog",
"cat": "Global",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable the Unified Audit Log"
},
{
"name": "standards.AnonReportDisable",
"cat": "Global",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable Usernames instead of pseudo anonymised names in reports"
},
{
"name": "standards.DisableGuestDirectory",
"cat": "Global",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Restrict guest user access to directory objects"
},
{
"name": "standards.ModernAuth",
"cat": "Global",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable Modern Authentication"
},
{
"name": "standards.DisableBasicAuth",
"cat": "Global",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable Basic Authentication"
},
@@ -88,21 +88,21 @@
{
"name": "standards.PWnumberMatchingRequiredState",
"cat": "AAD",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable Passwordless with Number Matching"
},
{
"cat": "AAD",
"name": "standards.PWdisplayAppInformationRequiredState",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable Passwordless with Location information and Number Matching"
},
{
"cat": "AAD",
"name": "standards.PWcompanionAppAllowedState.Enabled",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "Select",
"label": "Select value",
@@ -123,7 +123,7 @@
{
"cat": "AAD",
"name": "standards.TAP.Enabled",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "Select",
"label": "Select TAP Lifetime",
@@ -144,35 +144,35 @@
{
"cat": "AAD",
"name": "standards.SecurityDefaults",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable Security Defaults"
},
{
"cat": "AAD",
"name": "standards.PasswordExpireDisabled",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Do not expire passwords"
},
{
"cat": "AAD",
"name": "standards.DisableSecurityGroupUsers",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable Security Group creation by users"
},
{
"cat": "AAD",
"name": "standards.DisableTenantCreation",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable M365 Tenant creation by users"
},
{
"cat": "AAD",
"name": "standards.OauthConsent.Enabled",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "input",
"name": "standards.OauthConsent.AllowedApps",
@@ -183,70 +183,70 @@
{
"cat": "AAD",
"name": "standards.LegacyMFA",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable per-user MFA for all user (Legacy, Requires DAP.)"
},
{
"cat": "AAD",
"name": "standards.LegacyMFACleanup",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Remove Legacy MFA if SD or CA is active"
},
{
"cat": "AAD",
"name": "standards.NudgeMFA.enable",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Request to setup Authenticator if not setup yet."
},
{
"cat": "AAD",
"name": "standards.NudgeMFA.disable",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disables the request to setup Authenticator if setup."
},
{
"cat": "AAD",
"name": "standards.DisableSelfServiceLicenses",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable Self Service Licensing"
},
{
"cat": "AAD",
"name": "standards.DisableM365GroupUsers",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable M365 Group creation by users"
},
{
"cat": "AAD",
"name": "standards.UndoOauth",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Undo App Consent Standard"
},
{
"cat": "AAD",
"name": "standards.DisableGuests",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable Guest accounts that have not logged on for 90 days"
},
{
"cat": "AAD",
"name": "standards.EnableFIDO2",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable FIDO2 capabilities"
},
{
"name": "standards.OutBoundSpamAlert.Enabled",
"cat": "Exchange",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "input",
"name": "standards.OutBoundSpamAlert.OutboundSpamContact",
@@ -257,49 +257,49 @@
{
"name": "standards.DisableSharedMailbox",
"cat": "Exchange",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable Shared Mailbox AAD accounts"
},
{
"name": "standards.DelegateSentItems",
"cat": "Exchange",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Set mailbox Sent Items delegation (Sent items for shared mailboxes)"
},
{
"name": "standards.SendFromAlias",
"cat": "Exchange",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Allow users to send from their alias addresses"
},
{
"name": "standards.AutoExpandArchive",
"cat": "Exchange",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable Auto-expanding archives"
},
{
"name": "standards.SpoofWarn.enable",
"cat": "Exchange",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable Spoofing warnings for Outlook (This e-mail is external identifiers)"
},
{
"name": "standards.SpoofWarn.disable",
"cat": "Exchange",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable Spoofing warnings for Outlook (This e-mail is external identifiers)"
},
{
"name": "standards.DisableViva",
"cat": "Exchange",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable daily Insight/Viva reports"
},
@@ -320,7 +320,7 @@
{
"name": "standards.ActivityBasedTimeout",
"cat": "SharePoint",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable 1 hour Activity based Timeout"
},
@@ -328,7 +328,7 @@
{
"name": "standards.calDefault.Enabled",
"cat": "Exchange",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "Select",
"label": "Select Sharing Level",
@@ -369,21 +369,21 @@
{
"name": "standards.UserSubmissions.enable",
"cat": "Exchange",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Enable the built-in Report button in Outlook"
},
{
"name": "standards.UserSubmissions.disable",
"cat": "Exchange",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable the built-in Report button in Outlook"
},
{
"name": "standards.intuneDeviceReg.Enabled",
"cat": "Intune",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "input",
"name": "standards.intuneDeviceReg.max",
@@ -394,7 +394,7 @@
{
"name": "standards.intuneDeviceRetirementDays.Enabled",
"cat": "Intune",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "input",
"name": "standards.intuneDeviceRetirementDays.days",
@@ -405,7 +405,7 @@
{
"name": "standards.sharingCapability.Enabled",
"cat": "SharePoint",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "Select",
"label": "Select Sharing Level",
@@ -434,7 +434,7 @@
{
"name": "standards.ExcludedfileExt.Enabled",
"cat": "SharePoint",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": {
"type": "input",
"name": "standards.ExcludedfileExt.ext",
@@ -445,70 +445,77 @@
{
"name": "standards.disableMacSync",
"cat": "SharePoint",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Do not allow Mac devices to sync using OneDrive"
},
{
"name": "standards.DisableReshare",
"cat": "SharePoint",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable Resharing by External Users"
},
{
"name": "standards.DeletedUserRentention",
"cat": "SharePoint",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Retain a deleted user OneDrive for 1 year"
},
{
"name": "standards.DisableUserSiteCreate",
"cat": "SharePoint",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Disable site creation by standard users"
},
{
"name": "standards.unmanagedSync",
"cat": "SharePoint",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Only allow users to sync OneDrive from AAD joined devices"
},
+ {
+ "name": "standards.DisableAddShortcutsToOneDrive",
+ "cat": "SharePoint",
+ "helpText": "When the feature is disabled the option Add shortcut to My files will be removed; any folders that have already been added will remain on the user's computer.",
+ "addedComponent": null,
+ "label": "Disable Add Shortcuts To OneDrive"
+ },
{
"name": "standards.IntuneTemplate.enabled",
"cat": "templates",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Intune Templates"
},
{
"name": "standards.GroupTemplate.enabled",
"cat": "templates",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Group Templates"
},
{
"name": "standards.ExConnector.enabled",
"cat": "templates",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Exchange Connector Templates"
},
{
"name": "standards.ConditionalAccess.enabled",
"cat": "templates",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Conditional Access Templates"
},
{
"name": "standards.TransportRuleTemplate.enabled",
"cat": "templates",
- "helpText": "This is the default helptext",
+ "helpText": "",
"addedComponent": null,
"label": "Transport Rule Templates"
}
diff --git a/src/views/tenant/standards/ApplyStandard.js b/src/views/tenant/standards/ApplyStandard.js
index 4b687d57cdcb..a01959cefcc3 100644
--- a/src/views/tenant/standards/ApplyStandard.js
+++ b/src/views/tenant/standards/ApplyStandard.js
@@ -136,7 +136,12 @@ const ApplyStandard = () => {
.map((item, key) => (
<>
-
+
{item.addedComponent && (
{item.addedComponent.type === 'Select' ? (
@@ -179,7 +184,12 @@ const ApplyStandard = () => {
.map((item, key) => (
<>
-
+
{item.addedComponent && (
{item.addedComponent.type === 'Select' ? (
@@ -222,7 +232,12 @@ const ApplyStandard = () => {
.map((item, key) => (
<>
-
+
{item.addedComponent && (
{item.addedComponent.type === 'Select' ? (
@@ -265,7 +280,12 @@ const ApplyStandard = () => {
.map((item, key) => (
<>
-
+
{item.addedComponent && (
{item.addedComponent.type === 'Select' ? (
@@ -308,7 +328,12 @@ const ApplyStandard = () => {
.map((item, key) => (
<>
-
+
{item.addedComponent && (
{item.addedComponent.type === 'Select' ? (
diff --git a/src/views/tenant/standards/ListAppliedStandards.js b/src/views/tenant/standards/ListAppliedStandards.js
index c3f7b634c7ab..01cd41c41be2 100644
--- a/src/views/tenant/standards/ListAppliedStandards.js
+++ b/src/views/tenant/standards/ListAppliedStandards.js
@@ -189,6 +189,7 @@ const ListAppliedStandards = () => {
name={item.name}
label={item.label}
sublabel={getLabel(item)}
+ helpText={item.helpText}
/>
{item.addedComponent && (
@@ -227,6 +228,7 @@ const ListAppliedStandards = () => {
name={item.name}
label={item.label}
sublabel={getLabel(item)}
+ helpText={item.helpText}
/>
{item.addedComponent && (
@@ -265,6 +267,7 @@ const ListAppliedStandards = () => {
name={item.name}
label={item.label}
sublabel={getLabel(item)}
+ helpText={item.helpText}
/>
{item.addedComponent && (
@@ -303,6 +306,7 @@ const ListAppliedStandards = () => {
name={item.name}
label={item.label}
sublabel={getLabel(item)}
+ helpText={item.helpText}
/>
{item.addedComponent && (
@@ -341,6 +345,7 @@ const ListAppliedStandards = () => {
name={item.name}
label={item.label}
sublabel={getLabel(item)}
+ helpText={item.helpText}
/>
{item.addedComponent && (
From 52e674fb975c31eafdf5f2d66ef0b2954a6c870e Mon Sep 17 00:00:00 2001
From: BNWEIN
Date: Thu, 27 Jul 2023 10:30:04 +0100
Subject: [PATCH 05/56] Update package-lock.json
---
package-lock.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package-lock.json b/package-lock.json
index e5a5e59bfafe..dcec37e91554 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -79,7 +79,7 @@
"stylelint-order": "^5.0.0"
},
"engines": {
- "node": "16",
+ "node": "18",
"npm": ">=7"
}
},
From 3755e7faf6d92a0eebd4872817d6fd8b289abcac Mon Sep 17 00:00:00 2001
From: BNWEIN
Date: Fri, 28 Jul 2023 08:44:20 +0100
Subject: [PATCH 06/56] Fixed Enabling Online Archiving
Fixed Issue mentioned here: https://github.com/KelvinTegelaar/CIPP/issues/1655
---
src/views/identity/administration/UserActions.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/identity/administration/UserActions.js b/src/views/identity/administration/UserActions.js
index 78ca9e360fe8..b8050eb5145b 100644
--- a/src/views/identity/administration/UserActions.js
+++ b/src/views/identity/administration/UserActions.js
@@ -54,7 +54,7 @@ export default function UserActions({ tenantDomain, userId, userEmail, className
onClick: () =>
handleModal(
'Are you sure you want to enable the online archive for this user?',
- `/api/ExecEnableArchive?TenantFilter=${tenantDomain}&ID=${userEmail}`,
+ `/api/ExecEnableArchive?TenantFilter=${tenantDomain}&ID=${userId}`,
),
},
{
From 47328667d44cf84d1a33ebb73cdbd511a51fba9f Mon Sep 17 00:00:00 2001
From: BNWEIN
Date: Fri, 28 Jul 2023 11:03:34 +0100
Subject: [PATCH 07/56] Added SendOnBehalf Function
Added ability to add and remove "send on behalf" permissions from the edit mailbox screen
---
.../administration/EditMailboxPermissions.js | 30 +++++++++++++++++++
.../identity/administration/UserActions.js | 2 +-
2 files changed, 31 insertions(+), 1 deletion(-)
diff --git a/src/views/email-exchange/administration/EditMailboxPermissions.js b/src/views/email-exchange/administration/EditMailboxPermissions.js
index 0d935683f332..2841cf1c4d41 100644
--- a/src/views/email-exchange/administration/EditMailboxPermissions.js
+++ b/src/views/email-exchange/administration/EditMailboxPermissions.js
@@ -122,6 +122,8 @@ const MailboxPermissions = () => {
RemoveFullAccess: values.RemoveFullAccess ? values.RemoveFullAccess : null,
AddSendAs: values.AddSendAs ? values.AddSendAs : null,
RemoveSendAs: values.RemoveSendAs ? values.RemoveSendAs : null,
+ AddSendOnBehalf: values.AddSendOnBehalf ? values.AddSendOnBehalf : null,
+ RemoveSendOnBehalf: values.RemoveSendOnBehalf ? values.RemoveSendOnBehalf : null,
}
//window.alert(JSON.stringify(shippedValues))
genericPostRequest({ path: '/api/ExecEditMailboxPermissions', values: shippedValues })
@@ -250,6 +252,34 @@ const MailboxPermissions = () => {
/>
{usersError && Failed to load list of users}
+
+ ({
+ value: user.mail,
+ name: `${user.displayName} - ${user.mail} `,
+ }))}
+ placeholder={!usersIsFetching ? 'Select user' : 'Loading...'}
+ name="AddSendOnBehalf"
+ />
+ {usersError && Failed to load list of users}
+
+
+ ({
+ value: user.mail,
+ name: `${user.displayName} - ${user.mail} `,
+ }))}
+ placeholder={!usersIsFetching ? 'Select user' : 'Loading...'}
+ name="RemoveSendOnBehalf"
+ />
+ {usersError && Failed to load list of users}
+
diff --git a/src/views/identity/administration/UserActions.js b/src/views/identity/administration/UserActions.js
index b8050eb5145b..78ca9e360fe8 100644
--- a/src/views/identity/administration/UserActions.js
+++ b/src/views/identity/administration/UserActions.js
@@ -54,7 +54,7 @@ export default function UserActions({ tenantDomain, userId, userEmail, className
onClick: () =>
handleModal(
'Are you sure you want to enable the online archive for this user?',
- `/api/ExecEnableArchive?TenantFilter=${tenantDomain}&ID=${userId}`,
+ `/api/ExecEnableArchive?TenantFilter=${tenantDomain}&ID=${userEmail}`,
),
},
{
From d65811b42950169d22ddc5d1e3db9b7960c755f6 Mon Sep 17 00:00:00 2001
From: DChorn-ANS <94991453+DChorn-ANS@users.noreply.github.com>
Date: Sun, 30 Jul 2023 14:22:26 -0600
Subject: [PATCH 08/56] Update MEMListPolicyTemplates.js
Correct display issues
---
src/views/endpoint/intune/MEMListPolicyTemplates.js | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/views/endpoint/intune/MEMListPolicyTemplates.js b/src/views/endpoint/intune/MEMListPolicyTemplates.js
index 64f85c1b3e7f..73324c19b7f1 100644
--- a/src/views/endpoint/intune/MEMListPolicyTemplates.js
+++ b/src/views/endpoint/intune/MEMListPolicyTemplates.js
@@ -68,18 +68,18 @@ const AutopilotListTemplates = () => {
const columns = [
{
name: 'Display Name',
- selector: (row) => row['Displayname'],
+ selector: (row) => row['displayName'],
sortable: true,
- cell: (row) => CellTip(row['Displayname']),
+ cell: (row) => CellTip(row['displayName']),
exportSelector: 'Displayname',
minWidth: '400px',
maxWidth: '400px',
},
{
name: 'Description',
- selector: (row) => row['Description'],
+ selector: (row) => row['description'],
sortable: true,
- cell: (row) => CellTip(row['Description']),
+ cell: (row) => CellTip(row['description']),
exportSelector: 'Description',
minWidth: '400px',
maxWidth: '400px',
@@ -124,7 +124,7 @@ const AutopilotListTemplates = () => {
From 93d51339be5f66039d51f19c79176e48dda097e6 Mon Sep 17 00:00:00 2001
From: DChorn-ANS <94991453+DChorn-ANS@users.noreply.github.com>
Date: Sun, 30 Jul 2023 20:18:10 -0600
Subject: [PATCH 09/56] Update ListLicences.js
adjusting labelling
---
src/views/tenant/administration/ListLicences.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/views/tenant/administration/ListLicences.js b/src/views/tenant/administration/ListLicences.js
index f743975b9fba..a4acad8efaea 100644
--- a/src/views/tenant/administration/ListLicences.js
+++ b/src/views/tenant/administration/ListLicences.js
@@ -52,7 +52,7 @@ const columns = [
cell: cellBooleanFormatter(),
},
{
- name: 'Time until renewal (days)',
+ name: 'Days until renewal',
selector: (row) => row['TimeUntilRenew'],
sortable: true,
exportSelector: 'TimeUntilRenew',
@@ -65,7 +65,7 @@ const columns = [
cell: cellDateFormatter(),
},
{
- name: 'Time until renewal (days)',
+ name: 'Renewal Date',
selector: (row) => row['dateExpires'],
sortable: true,
exportSelector: 'dateExpires',
From 59c3a93f511f808aefebb94c01c057ce59b1d862 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Mon, 31 Jul 2023 16:12:47 +0200
Subject: [PATCH 10/56] fix display bug
---
src/views/endpoint/applications/ApplicationsAddChocoApp.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/views/endpoint/applications/ApplicationsAddChocoApp.js b/src/views/endpoint/applications/ApplicationsAddChocoApp.js
index d0793a42b02d..4b46dcec0efa 100644
--- a/src/views/endpoint/applications/ApplicationsAddChocoApp.js
+++ b/src/views/endpoint/applications/ApplicationsAddChocoApp.js
@@ -284,7 +284,8 @@ const ApplyStandard = () => {
Disable Restart: {props.values.DisableRestart ? 'Yes' : 'No'}
- Assign to: {props.values.AssignTo}
+ Assign to:
+ {props.values.AssignTo == 'on' ? ' None' : ` ${props.values.AssignTo}`}
From 54b0407fafcdbbdc8e658968238e80620c83b694 Mon Sep 17 00:00:00 2001
From: redanthrax
Date: Tue, 1 Aug 2023 16:37:02 -0700
Subject: [PATCH 11/56] removed ssl, fixed ws hotreload, azurite location
---
.env | 2 +-
.vscode/cert.crt | 23 -----------------------
.vscode/key.key | 28 ----------------------------
.vscode/launch.json | 15 ---------------
.vscode/tasks.json | 2 +-
package-lock.json | 13 ++++++++-----
package.json | 6 +++---
7 files changed, 13 insertions(+), 76 deletions(-)
delete mode 100644 .vscode/cert.crt
delete mode 100644 .vscode/key.key
diff --git a/.env b/.env
index d823ba7c93d8..b30889fdb059 100644
--- a/.env
+++ b/.env
@@ -2,4 +2,4 @@ PORT=3000
CHOKIDAR_USEPOLLING=true
BROWSER=none
GENERATE_SOURCEMAP=false
-WDS_SOCKET_PORT=0
\ No newline at end of file
+WDS_SOCKET_PORT=3000
diff --git a/.vscode/cert.crt b/.vscode/cert.crt
deleted file mode 100644
index 2063ff67b2ee..000000000000
--- a/.vscode/cert.crt
+++ /dev/null
@@ -1,23 +0,0 @@
------BEGIN CERTIFICATE-----
-MIID5zCCAs+gAwIBAgIUPBNQ5IYnuW4QLkJhOGlO+pSJdjEwDQYJKoZIhvcNAQEL
-BQAwgYIxCzAJBgNVBAYTAlVTMQswCQYDVQQIDAJXQTEVMBMGA1UEBwwMTW91bnQg
-VmVybm9uMQswCQYDVQQKDAJJVDELMAkGA1UECwwCSVQxEjAQBgNVBAMMCWxvY2Fs
-aG9zdDEhMB8GCSqGSIb3DQEJARYSZ2dhZ25vbkBhbGxpeG8uY29tMB4XDTIxMTAy
-MjIwMjkwOVoXDTIyMTAyMjIwMjkwOVowgYIxCzAJBgNVBAYTAlVTMQswCQYDVQQI
-DAJXQTEVMBMGA1UEBwwMTW91bnQgVmVybm9uMQswCQYDVQQKDAJJVDELMAkGA1UE
-CwwCSVQxEjAQBgNVBAMMCWxvY2FsaG9zdDEhMB8GCSqGSIb3DQEJARYSZ2dhZ25v
-bkBhbGxpeG8uY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5eF8
-uChHouPDS6+RSdSdVxf5KlFC+fV4IvSQu4Py8Ed/z/TyhrjO42cddFEliZUz3v79
-wd2RuiysqnQwND8CploSAsR6UkaNiupemNeQoqms9hJBB2RBzZAkP2OFAbgS33se
-piJLmmZZRonRtX9ca0texFCMPhv7iTIJ4Asm4rKsCTD7oJdhy4WRq2BA+SkdIISd
-q9B/CZztlBtdD0GGBRcjcbXDoy4f3j1tRtJ6EoBiYPz2faQS9R+RPD5KarFXGZBu
-Hyg/2nwvsYE3oLYEVN1kj3cd30qcBP4rB9V9FQzGtCLwpJLfaeRa3mrpc08t8cM4
-R2OxRKuT6/B8gQ4dvwIDAQABo1MwUTAdBgNVHQ4EFgQUOlQQpUMttsQmVIopyvjG
-WOkyERMwHwYDVR0jBBgwFoAUOlQQpUMttsQmVIopyvjGWOkyERMwDwYDVR0TAQH/
-BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAo1VETgju0EOBhtNm/AU4q93q9D+b
-GPQZ/aOSvSvI5+lnQwktHowmf9m3oiDzEkCq+8yA2aPluW+O/79yw4RbNBzpZcPt
-hyje6z3KdxlzO2aIHBF4IXwj5GLrwaCjLkmRLzbhq81cnj1cfTL+a6WT08Ib23sz
-Jvy2TUfVuZOZzYOYPspsl3Ix04339sP0Euw8Nilm9tBB4Bg2bu8MckqnJ8/wuGbD
-OKQcS7StVOsXD2O8MzknVZZ1uXB4ysqgmEXgvJZhQR9xydJTkzGSvm7hH0QTulWG
-nv8LOx8SQRZ0pLaTVI4ZPFcz8PJkzHnxOtZhIKeODeVD06y07gxa7ahfRA==
------END CERTIFICATE-----
diff --git a/.vscode/key.key b/.vscode/key.key
deleted file mode 100644
index 31b6abc75e12..000000000000
--- a/.vscode/key.key
+++ /dev/null
@@ -1,28 +0,0 @@
------BEGIN PRIVATE KEY-----
-MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQDl4Xy4KEei48NL
-r5FJ1J1XF/kqUUL59Xgi9JC7g/LwR3/P9PKGuM7jZx10USWJlTPe/v3B3ZG6LKyq
-dDA0PwKmWhICxHpSRo2K6l6Y15Ciqaz2EkEHZEHNkCQ/Y4UBuBLfex6mIkuaZllG
-idG1f1xrS17EUIw+G/uJMgngCybisqwJMPugl2HLhZGrYED5KR0ghJ2r0H8JnO2U
-G10PQYYFFyNxtcOjLh/ePW1G0noSgGJg/PZ9pBL1H5E8PkpqsVcZkG4fKD/afC+x
-gTegtgRU3WSPdx3fSpwE/isH1X0VDMa0IvCkkt9p5FreaulzTy3xwzhHY7FEq5Pr
-8HyBDh2/AgMBAAECggEAFzlhnUVMf3NdPp89IWVeg/cDEDhneNNI0Nc+bANXntjK
-W9sWSXAQTr8TJbYxAaZWODgwsM5Os61hwFK+r/iRrva4jRkGdpt0H02wQua8UQKt
-W6racQG6+CaQ0uqd/F95YKSSoxwh4TZn3I1950U3tAtIRrMQiBHRprmsb7sQsaRE
-XqDrQmnAKzWJQzy42JqJDUsx6FvFCdRpnJ7Sq3cEgJopZ8Kg7t+gVWSJzmrIovvr
-Py8plYr5fjGi0ZpI4aiZe8ifyoryVJGi6wLRasOnILNiQfgbG6/ESU0iPzxVZto1
-bmN+iBHt60H3SUIps1x6cRfRz0sM76LTgWogBl8Z4QKBgQD49YrkVvy137Q7r6l9
-mR28sDSR+kVPaCoqNXHs1Za48iHfYt7K+7gA+nyjpE/oUgTVM349k2d/qRjIJpmr
-ixs2vuktPULoDGkI93J0b1zcZkjYsG8R9Y/xiUHtlbLLqBtYxiXE/wwUcStaUZKZ
-J8jn8FW+aIDXlAFvzOwXM02xjwKBgQDsYdFmYgo8X+apHxfFJCNI7+Wrvp/473Tf
-ZoheY78j2knTWlnTNQfNRHV19z2W03IR1TUTIakRTJn7ar2Ka/+jJHrOKEaq1k/M
-L/T+wLb/8FbM2mqPxKeHJBrBH8HGOFXUwUuV/eWFrUq/ZCb1pPMLmXyFO9eDP2LC
-o0Pns3lY0QKBgDPwvoZ/I4AqaObe8kSS8mJQfNdL2LQFbm6Z8efQc/6n/asmbIb6
-11vU5rYZbNZybjGw6ZCdNUWsGNCBRSRGBGp6kBlxI4lYNX26anWiWkRdTqtuu+2K
-RvrEgS25QrE8pF/0DyM3duS466uPQz+SzladjLYKBX90kIwru8HnYTk/AoGALdi/
-C3OCdrlG/JBKRPNAYLoeupPLZTXUXiv90QjZnrOM1BBXEa7cZ4San5mneWRjYHAQ
-zjgeGXvY9bl7L6jIuTSvGOMY6bONYJYAl5R7KeLMgwjt2BqVP5HSGpj1NWPhydT/
-uwS2ipnUwJBFOimW9i37x7+Wih82IXgXCI53v7ECgYBbUS7uA0plTxcILo53kTWl
-nKTv7ElMUfcmFCNlPvKBi5pWDZ4aJqTk0jHVcb3W1uI5YRFeNwN5vsUB4+wU8+VS
-3cO04ViiA/yk7O6DIw2+N9EKeR5V8ul/wZzrIxaDPM0mWbOdFmaouKJnI8hb17zk
-lGasx7k4HPHOfBI71RIMPg==
------END PRIVATE KEY-----
diff --git a/.vscode/launch.json b/.vscode/launch.json
index ba5cb9a0aceb..795913600ca5 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -21,21 +21,6 @@
"type": "node-terminal",
"preLaunchTask": "RunAllTasks",
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"]
- },
- {
- "name": "Launch Edge",
- "request": "launch",
- "type": "pwa-msedge",
- "url": "https://localhost:4280",
- "webRoot": "${workspaceFolder}"
- },
- {
- "name": "Attach to Edge",
- "port": 9222,
- "request": "attach",
- "type": "pwa-msedge",
- "urlFilter": "https://localhost:4280/*",
- "webRoot": "${workspaceFolder}"
}
],
"compounds": [
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index fcc49e0b8041..110a8d8fb6df 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -8,7 +8,7 @@
{
"label": "RunAzurite",
"type": "shell",
- "command": "azurite",
+ "command": "azurite --location ../",
"isBackground": true,
"problemMatcher": {
"pattern": [
diff --git a/package-lock.json b/package-lock.json
index dcec37e91554..f3e873c9bc78 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -73,7 +73,7 @@
"prettier": "2.4.1",
"react-scripts": "^5.0.0",
"redux-immutable-state-invariant": "^2.1.0",
- "sass": "^1.44",
+ "sass": "^1.64.2",
"stylelint": "^14.3.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-order": "^5.0.0"
@@ -15845,9 +15845,10 @@
"license": "CC0-1.0"
},
"node_modules/sass": {
- "version": "1.53.0",
+ "version": "1.64.2",
+ "resolved": "https://registry.npmjs.org/sass/-/sass-1.64.2.tgz",
+ "integrity": "sha512-TnDlfc+CRnUAgLO9D8cQLFu/GIjJIzJCGkE7o4ekIGQOH7T3GetiRR/PsTWJUHhkzcSPrARkPI+gNWn5alCzDg==",
"dev": true,
- "license": "MIT",
"dependencies": {
"chokidar": ">=3.0.0 <4.0.0",
"immutable": "^4.0.0",
@@ -15857,7 +15858,7 @@
"sass": "sass.js"
},
"engines": {
- "node": ">=12.0.0"
+ "node": ">=14.0.0"
}
},
"node_modules/sass-loader": {
@@ -28243,7 +28244,9 @@
"dev": true
},
"sass": {
- "version": "1.53.0",
+ "version": "1.64.2",
+ "resolved": "https://registry.npmjs.org/sass/-/sass-1.64.2.tgz",
+ "integrity": "sha512-TnDlfc+CRnUAgLO9D8cQLFu/GIjJIzJCGkE7o4ekIGQOH7T3GetiRR/PsTWJUHhkzcSPrARkPI+gNWn5alCzDg==",
"dev": true,
"requires": {
"chokidar": ">=3.0.0 <4.0.0",
diff --git a/package.json b/package.json
index 967975c415d8..6040e8710664 100644
--- a/package.json
+++ b/package.json
@@ -17,11 +17,11 @@
"changelog": "auto-changelog --starting-version 3.0.0 --commit-limit false --hide-credit",
"eject": "react-scripts eject",
"lint": "eslint \"src/**/*.js\"",
- "start": "set HTTPS=true&&set SSL_CRT_FILE=./.vscode/cert.crt&&set SSL_KEY_FILE=./.vscode/key.key&&react-scripts start",
+ "start": "react-scripts start",
"test": "react-scripts test",
"test:cov": "npm test -- --coverage --watchAll=false",
"test:debug": "react-scripts --inspect-brk test --runInBand",
- "start-swa": "swa start --ssl --ssl-cert ./.vscode/cert.crt --ssl-key ./.vscode/key.key --swa-config-location .vscode https://localhost:3000 --api-location http://localhost:7071",
+ "start-swa": "swa start --swa-config-location .vscode http://127.0.0.1:3000 --api-location http://localhost:7071",
"prepare": "husky install"
},
"config": {
@@ -92,7 +92,7 @@
"prettier": "2.4.1",
"react-scripts": "^5.0.0",
"redux-immutable-state-invariant": "^2.1.0",
- "sass": "^1.44",
+ "sass": "^1.64.2",
"stylelint": "^14.3.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-order": "^5.0.0"
From a5f8ad65c7e5329e1d8d893cc5e98ba0b1fe0ca2 Mon Sep 17 00:00:00 2001
From: BNWEIN
Date: Wed, 2 Aug 2023 11:12:34 +0100
Subject: [PATCH 12/56] Added Functionality to CIPP Notifications so you can
filter by severity
Added Functionality to CIPP Notifications so you can filter by severity
---
src/store/api/app.js | 2 ++
src/views/cipp/CIPPSettings.js | 16 ++++++++++++++++
2 files changed, 18 insertions(+)
diff --git a/src/store/api/app.js b/src/store/api/app.js
index 77cab1b67fc9..06089d3113bd 100644
--- a/src/store/api/app.js
+++ b/src/store/api/app.js
@@ -56,6 +56,7 @@ export const appApi = baseApi.injectEndpoints({
onePerTenant,
sendtoIntegration,
logsToInclude,
+ Severity,
}) => ({
path: '/api/ExecNotificationConfig',
data: {
@@ -70,6 +71,7 @@ export const appApi = baseApi.injectEndpoints({
addChocoApp: addChocoApp,
onePerTenant: onePerTenant,
logsToInclude: logsToInclude,
+ Severity: Severity,
sendtoIntegration: sendtoIntegration,
},
method: 'post',
diff --git a/src/views/cipp/CIPPSettings.js b/src/views/cipp/CIPPSettings.js
index bb428a0fac45..e0607023e5cb 100644
--- a/src/views/cipp/CIPPSettings.js
+++ b/src/views/cipp/CIPPSettings.js
@@ -981,6 +981,10 @@ const NotificationsSettings = () => {
label: m,
value: m,
})),
+ Severity: notificationListResult.data?.Severity?.map((s) => ({
+ label: s,
+ value: s,
+ })),
}}
onSubmit={onSubmit}
render={({ handleSubmit, submitting, values }) => {
@@ -1033,6 +1037,18 @@ const NotificationsSettings = () => {
]}
/>
+
+
+
Date: Wed, 2 Aug 2023 08:58:21 -0700
Subject: [PATCH 13/56] added chrome debug launch, task casing/formatting
---
.vscode/launch.json | 14 ++++++++++----
.vscode/tasks.json | 8 ++++----
2 files changed, 14 insertions(+), 8 deletions(-)
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 795913600ca5..df82b6059e48 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -10,23 +10,29 @@
},
{
"command": "npm run start-swa",
- "name": "Run emulator",
+ "name": "Run Emulator",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm start",
- "name": "Run frontend",
+ "name": "Run Frontend",
"request": "launch",
"type": "node-terminal",
- "preLaunchTask": "RunAllTasks",
+ "preLaunchTask": "Run All Tasks",
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"]
+ },
+ {
+ "type": "chrome",
+ "request": "launch",
+ "name": "Launch Chrome Debugger",
+ "url": "http://localhost:4280"
}
],
"compounds": [
{
"name": "Launch it all 🚀",
- "configurations": ["Run frontend", "Run emulator"]
+ "configurations": ["Run Frontend", "Run Emulator"]
}
]
}
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 110a8d8fb6df..1bcdb9744954 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -2,11 +2,11 @@
"version": "2.0.0",
"tasks": [
{
- "label": "RunAllTasks",
- "dependsOn": ["RunAPI", "RunAzurite"]
+ "label": "Run All Tasks",
+ "dependsOn": ["Run API", "Run Azurite"]
},
{
- "label": "RunAzurite",
+ "label": "Run Azurite",
"type": "shell",
"command": "azurite --location ../",
"isBackground": true,
@@ -27,7 +27,7 @@
}
},
{
- "label": "RunAPI",
+ "label": "Run API",
"type": "shell",
"command": "func start --verbose",
"isBackground": true,
From 330ab517890893b11555fbad976f33f96ab85608 Mon Sep 17 00:00:00 2001
From: Roel van der Wegen
Date: Thu, 3 Aug 2023 00:54:05 +0200
Subject: [PATCH 14/56] Fix input validation to support both domain and GUID
---
.../tenant/administration/TenantLookup.js | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/src/views/tenant/administration/TenantLookup.js b/src/views/tenant/administration/TenantLookup.js
index a9faad2d0cc4..97f76156e70e 100644
--- a/src/views/tenant/administration/TenantLookup.js
+++ b/src/views/tenant/administration/TenantLookup.js
@@ -24,6 +24,16 @@ import { CippContentCard } from 'src/components/layout'
import Skeleton from 'react-loading-skeleton'
import { domainsApi } from 'src/store/api/domains'
+const isValidTenantInput = (value) => {
+ // Regular expression for validating GUID
+ const guidRegex = /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
+ // Regular expression for validating domain
+ const domainRegex = /^([a-zA-Z0-9](-?[a-zA-Z0-9])*\.)+[a-zA-Z]{2,}$/
+
+ // Check if the input is a valid GUID or domain
+ return !(guidRegex.test(value) || domainRegex.test(value))
+}
+
const GraphExplorer = () => {
let navigate = useNavigate()
const tenant = useSelector((state) => state.app.currentTenant)
@@ -57,12 +67,6 @@ const GraphExplorer = () => {
})
}
}, [execGraphRequest, tenant.defaultDomainName, query, tenantdomain])
- const isValidDomain = (value) =>
- /^(((?!-))(xn--|_{1,1})?[a-z0-9-]{0,61}[a-z0-9]{1,1}\.)*(xn--)?([a-z0-9][a-z0-9-]{0,60}|[a-z0-9-]{1,30}\.[a-z]{2,})$/i.test(
- value,
- )
- ? undefined
- : value
return (
@@ -80,7 +84,7 @@ const GraphExplorer = () => {
render={({ handleSubmit, submitting, pristine }) => {
return (
-
+
{({ input, meta }) => {
return (
<>
From 39b4c8cf350b78e9f3309d8898b617ecfe5c120e Mon Sep 17 00:00:00 2001
From: John Duprey
Date: Wed, 2 Aug 2023 23:54:34 -0400
Subject: [PATCH 15/56] Azure Cloud Shell
- Add new section to Backend URLs
- Add CippOffcanvas with preset commands
- Cleanup card layout
---
src/views/cipp/CIPPSettings.js | 151 +++++++++++++++++++++++++++------
1 file changed, 124 insertions(+), 27 deletions(-)
diff --git a/src/views/cipp/CIPPSettings.js b/src/views/cipp/CIPPSettings.js
index bb428a0fac45..08126ca42e76 100644
--- a/src/views/cipp/CIPPSettings.js
+++ b/src/views/cipp/CIPPSettings.js
@@ -69,6 +69,7 @@ import { Form } from 'react-final-form'
import useConfirmModal from 'src/hooks/useConfirmModal'
import { setCurrentTenant } from 'src/store/features/app'
import {
+ CippOffcanvas,
CippCodeBlock,
ModalService,
StatusIcon,
@@ -821,7 +822,7 @@ const ExcludedTenantsSettings = () => {
}
const SecuritySettings = () => {
const [listBackend, listBackendResult] = useLazyGenericGetRequestQuery()
-
+ const [visible, setVisible] = useState(false)
return (
{listBackendResult.isUninitialized && listBackend({ path: 'api/ExecBackendURLs' })}
@@ -833,16 +834,16 @@ const SecuritySettings = () => {
Resource Group
-
+
The Resource group contains all the CIPP resources in your tenant, except the SAM
Application
-
+
- Go to Resource Group
+ Go to Resource Group
@@ -853,16 +854,16 @@ const SecuritySettings = () => {
Key Vault
-
+
The keyvault allows you to check token information. By default you do not have
access.
-
+
- Go to Keyvault
+ Go to Keyvault
@@ -873,16 +874,16 @@ const SecuritySettings = () => {
Static Web App (Role Management)
-
+
The Static Web App role management allows you to invite other users to the
application.
-
+
- Go to Role Management
+ Go to Role Management
@@ -895,15 +896,13 @@ const SecuritySettings = () => {
Function App (Deployment Center)
-
- The Function App Deployment Center allows you to run updates on the API
-
+ The Function App Deployment Center allows you to run updates on the API
- Go to Function App Deployment Center
+ Go to Function App Deployment Center
@@ -914,17 +913,17 @@ const SecuritySettings = () => {
Function App (Configuration)
-
+
At the Function App Configuration you can check the status of the API access to
your keyvault
-
- Go to Function App Configuration
-
-
+
+
+ Go to Function App Configuration
+
@@ -934,20 +933,118 @@ const SecuritySettings = () => {
Function App (Overview)
-
- At the function App Overview, you can stop and start the backend API
-
+ At the function App Overview, you can stop and start the backend API
- Go to Function App Overview
+ Go to Function App Overview
+
+
+
+
+ Cloud Shell
+
+
+ Launch an Azure Cloud Shell Window
+
+ window.open(
+ 'https://shell.azure.com/powershell',
+ '_blank',
+ 'toolbar=no,scrollbars=yes,resizable=yes,menubar=no,location=no,status=no',
+ )
+ }
+ rel="noreferrer"
+ >
+ Cloud Shell
+
+ setVisible(true)} className="mb-3">
+ Command Reference
+
+
+
+
+
+
setVisible(false)}
+ title="Command Reference"
+ >
+ Function App Config
+
+ Function App Deployment
+
+ Watch Function Logs
+
+ Static Web App Config
+
+ List CIPP Users
+
+
>
)
From 33d1c703bafc2336079f8d6cdf8dd4cbd38d8d45 Mon Sep 17 00:00:00 2001
From: BNWEIN
Date: Thu, 3 Aug 2023 09:55:55 +0100
Subject: [PATCH 16/56] Added Cell Tip
Added Cell Tip
---
src/views/tenant/administration/ListLicences.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/views/tenant/administration/ListLicences.js b/src/views/tenant/administration/ListLicences.js
index a4acad8efaea..08ce292b82ad 100644
--- a/src/views/tenant/administration/ListLicences.js
+++ b/src/views/tenant/administration/ListLicences.js
@@ -42,6 +42,7 @@ const columns = [
name: 'Estimated Term',
selector: (row) => row['EstTerm'],
sortable: true,
+ cell: (row) => CellTip(row['EstTerm']),
exportSelector: 'EstTerm',
},
{
From 97e5be05bd50d5f8589db6295e82746b0bc13d2a Mon Sep 17 00:00:00 2001
From: BNWEIN
Date: Thu, 3 Aug 2023 10:19:08 +0100
Subject: [PATCH 17/56] Updated wording.
updated wording.
---
src/data/Extensions.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/data/Extensions.json b/src/data/Extensions.json
index 194c0c6c153d..cb15aa1043e8 100644
--- a/src/data/Extensions.json
+++ b/src/data/Extensions.json
@@ -56,7 +56,7 @@
"type": "HaloPSA",
"cat": "Ticketing",
"forceSyncButton": false,
- "helpText": "This integration allows you to use to send alerts to your ticketing system.",
+ "helpText": "This integration allows you to send alerts to your ticketing system.",
"SettingOptions": [
{
"type": "input",
From a598530c86d2bcc9f27537301abe6b61dd798735 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Thu, 3 Aug 2023 12:24:29 +0200
Subject: [PATCH 18/56] correction in add tempalte
---
src/views/email-exchange/connectors/ListConnectorTemplates.js | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/views/email-exchange/connectors/ListConnectorTemplates.js b/src/views/email-exchange/connectors/ListConnectorTemplates.js
index beba4bc003ef..48e8a92ec80b 100644
--- a/src/views/email-exchange/connectors/ListConnectorTemplates.js
+++ b/src/views/email-exchange/connectors/ListConnectorTemplates.js
@@ -99,7 +99,9 @@ const ConnectorListTemplates = () => {
)}
}
+ titleButton={
+
+ }
datatable={{
reportName: `${tenant?.defaultDomainName}-Groups`,
path: '/api/ListExconnectorTemplates',
From 1ad2b71843d807bd449cf3f5e5b69d2ca56313a0 Mon Sep 17 00:00:00 2001
From: DChorn-ANS <94991453+DChorn-ANS@users.noreply.github.com>
Date: Fri, 4 Aug 2023 10:59:19 -0600
Subject: [PATCH 19/56] CellBooleanformatter fix
Cellbooleanformatter was not treating disabled as false
---
src/components/tables/CellBoolean.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/components/tables/CellBoolean.js b/src/components/tables/CellBoolean.js
index 98f69dfa1adc..edbe64264690 100644
--- a/src/components/tables/CellBoolean.js
+++ b/src/components/tables/CellBoolean.js
@@ -52,7 +52,8 @@ export default function CellBoolean({
cell.toLowerCase() === 'fail' ||
cell.toLowerCase() === 'default' ||
cell.toLowerCase() === 'false' ||
- cell.toLowerCase() === 'noncompliant'
+ cell.toLowerCase() === 'noncompliant' ||
+ cell.toLowerCase() === 'disabled'
) {
normalized = false
}
From 8cbc362c7a13700e026de57b98a8e1681e5bf007 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Mon, 7 Aug 2023 10:52:56 +0200
Subject: [PATCH 20/56] added adding of webhook based alerts
---
src/_nav.js | 2 +-
.../tenant/administration/AlertWizard.js | 79 +++++++++-
.../tenant/administration/ListAlertsQueue.js | 141 ++++++++++++++----
3 files changed, 194 insertions(+), 28 deletions(-)
diff --git a/src/_nav.js b/src/_nav.js
index 6db81f2e2398..c3f260b1a586 100644
--- a/src/_nav.js
+++ b/src/_nav.js
@@ -129,7 +129,7 @@ const _nav = [
},
{
component: CNavItem,
- name: 'Scheduled Alerts',
+ name: 'Alerts Configuration',
to: '/tenant/administration/alertsqueue',
},
{
diff --git a/src/views/tenant/administration/AlertWizard.js b/src/views/tenant/administration/AlertWizard.js
index 934e3f26ce2d..353b80c578a3 100644
--- a/src/views/tenant/administration/AlertWizard.js
+++ b/src/views/tenant/administration/AlertWizard.js
@@ -6,9 +6,9 @@ import { faCheck, faExclamationTriangle, faTimes } from '@fortawesome/free-solid
import { CippWizard } from 'src/components/layout'
import { WizardTableField } from 'src/components/tables'
import PropTypes from 'prop-types'
-import { RFFCFormSwitch } from 'src/components/forms'
+import { RFFCFormSelect, RFFCFormSwitch, RFFSelectSearch } from 'src/components/forms'
import { useLazyGenericPostRequestQuery } from 'src/store/api/app'
-
+import countryList from 'src/data/countryList.json'
const Error = ({ name }) => (
{
+
+
+ Step 3
+ Select webhook alerts
+
+
+
+
+ These alerts are received directly from the audit log, and will be processed as soon as
+ Microsoft sends them to CIPP. These alerts generate a ticket, email or webhook message
+ per alert, with more information about the alert.
+
+
+
+
+
+
+
+
+
+ ({
+ value: Code,
+ name: Name,
+ }))}
+ />
+
+
+
+
+
Step 3
diff --git a/src/views/tenant/administration/ListAlertsQueue.js b/src/views/tenant/administration/ListAlertsQueue.js
index 14876cfcb85f..6e667cb712af 100644
--- a/src/views/tenant/administration/ListAlertsQueue.js
+++ b/src/views/tenant/administration/ListAlertsQueue.js
@@ -1,6 +1,6 @@
import React from 'react'
import { useSelector } from 'react-redux'
-import { CSpinner, CButton, CCallout } from '@coreui/react'
+import { CSpinner, CButton, CCallout, CRow } from '@coreui/react'
import { faTrash } from '@fortawesome/free-solid-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { CippPageList } from 'src/components/layout'
@@ -37,6 +37,69 @@ const ListAlertsQueue = () => {
)
}
+ const ActionsWebhook = (row, index, column) => {
+ const handleDeleteStandard = (apiurl, message) => {
+ ModalService.confirm({
+ title: 'Confirm',
+ body: {message}
,
+ onConfirm: () => ExecuteGetRequest({ path: apiurl }),
+ confirmLabel: 'Continue',
+ cancelLabel: 'Cancel',
+ })
+ }
+ return (
+
+ handleDeleteStandard(
+ `api/RemoveWebhookAlert?CIPPID=${row.RowKey}&TenantFilter=${row.PartitionKey}`,
+ 'Do you want to delete the queued alert?',
+ )
+ }
+ >
+
+
+ )
+ }
+ const webhookcolumns = [
+ {
+ name: 'Tenant',
+ selector: (row) => row['PartitionKey'],
+ sortable: true,
+ exportSelector: 'PartitionKey',
+ },
+ {
+ name: 'Expiration',
+ selector: (row) => row['Expiration'],
+ sortable: true,
+ exportSelector: 'Expiration',
+ },
+ {
+ name: 'Monitored Resource',
+ selector: (row) => row['Resource'],
+ sortable: true,
+ exportSelector: 'Resource',
+ },
+ {
+ name: 'Monitored Actions',
+ selector: (row) => row['operations'],
+ sortable: true,
+ exportSelector: 'operations',
+ },
+ {
+ name: 'Webhook URL',
+ selector: (row) => row['WebhookNotificationUrl'],
+ sortable: true,
+ exportSelector: 'WebhookNotificationUrl',
+ },
+ {
+ name: 'Actions',
+ cell: ActionsWebhook,
+ },
+ ]
+
const columns = [
{
name: 'Tenant',
@@ -174,30 +237,58 @@ const ListAlertsQueue = () => {
{getResults.isError && (
Could not connect to API: {getResults.error.message}
)}
-
+
+
+
+
+
+
)
}
From 32fe72e237934cb32096f9e75e7f8f88905668d6 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Mon, 7 Aug 2023 12:09:56 +0200
Subject: [PATCH 21/56] fixed typo
---
src/views/tenant/administration/ListAlertsQueue.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/views/tenant/administration/ListAlertsQueue.js b/src/views/tenant/administration/ListAlertsQueue.js
index 6e667cb712af..8b52ee6d9624 100644
--- a/src/views/tenant/administration/ListAlertsQueue.js
+++ b/src/views/tenant/administration/ListAlertsQueue.js
@@ -84,9 +84,9 @@ const ListAlertsQueue = () => {
},
{
name: 'Monitored Actions',
- selector: (row) => row['operations'],
+ selector: (row) => row['Operations'],
sortable: true,
- exportSelector: 'operations',
+ exportSelector: 'Operations',
},
{
name: 'Webhook URL',
From db74121850b6ad5bf869659dcbf2dc755f912fc2 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Mon, 7 Aug 2023 22:39:24 +0200
Subject: [PATCH 22/56] fix
---
src/views/tenant/administration/AlertWizard.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/tenant/administration/AlertWizard.js b/src/views/tenant/administration/AlertWizard.js
index 353b80c578a3..9740ea4f97fd 100644
--- a/src/views/tenant/administration/AlertWizard.js
+++ b/src/views/tenant/administration/AlertWizard.js
@@ -201,7 +201,7 @@ const AlertWizard = () => {
{ value: 'Reset user password.', name: 'Reset user password' },
{ value: 'AdminLoggedIn', name: 'Admin has logged in' },
{
- value: 'UserLoggedInFromUnknownLocation',
+ value: 'UserLoggedIn',
name: 'A user has logged in from an unknown location, or non-allowed location',
},
]}
From 663f94be03a703ec64993e5c5ed28f07e4476203 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Mon, 7 Aug 2023 22:42:00 +0200
Subject: [PATCH 23/56] corrected typo
---
src/views/tenant/administration/AlertWizard.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/tenant/administration/AlertWizard.js b/src/views/tenant/administration/AlertWizard.js
index 9740ea4f97fd..b48bf0776b50 100644
--- a/src/views/tenant/administration/AlertWizard.js
+++ b/src/views/tenant/administration/AlertWizard.js
@@ -181,7 +181,7 @@ const AlertWizard = () => {
multi
values={[
{ value: 'New-InboxRule', name: 'New Inbox Rules' },
- { value: 'Set-inboxrule', name: 'Set Inbox Rules' },
+ { value: 'Set-Inboxrule', name: 'Set Inbox Rules' },
{ value: 'Add member to role.', name: 'Adding a member to any admin role' },
{
value: 'Remove Member from a role.',
From 8de201741dbef757eb50471e02d3299e9b357a24 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Tue, 8 Aug 2023 10:46:08 +0200
Subject: [PATCH 24/56] added ops
---
src/views/tenant/administration/AlertWizard.js | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/views/tenant/administration/AlertWizard.js b/src/views/tenant/administration/AlertWizard.js
index b48bf0776b50..8693e7ce40e2 100644
--- a/src/views/tenant/administration/AlertWizard.js
+++ b/src/views/tenant/administration/AlertWizard.js
@@ -200,9 +200,13 @@ const AlertWizard = () => {
},
{ value: 'Reset user password.', name: 'Reset user password' },
{ value: 'AdminLoggedIn', name: 'Admin has logged in' },
+ {
+ value: 'UserLoggedInFromUnknownLocation',
+ name: 'A user has logged in from non-allowed location',
+ },
{
value: 'UserLoggedIn',
- name: 'A user has logged in from an unknown location, or non-allowed location',
+ name: 'A user has logged in from non-allowed location',
},
]}
/>
From d16e402d7fa945f5769e05c2aa46d16a9269c6af Mon Sep 17 00:00:00 2001
From: John Duprey
Date: Tue, 8 Aug 2023 18:05:09 -0400
Subject: [PATCH 25/56] Update ListGDAPRoles.js
Add delete role mapping action
---
src/views/tenant/administration/ListGDAPRoles.js | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/src/views/tenant/administration/ListGDAPRoles.js b/src/views/tenant/administration/ListGDAPRoles.js
index f7279740b20c..5f7990434815 100644
--- a/src/views/tenant/administration/ListGDAPRoles.js
+++ b/src/views/tenant/administration/ListGDAPRoles.js
@@ -33,6 +33,19 @@ const ListGDAPRoles = () => {
columns,
reportName: `GDAPRole-List`,
path: '/api/ListGDAPRoles',
+ tableProps: {
+ selectableRows: true,
+ actionsList: [
+ {
+ label: 'Delete Mapping',
+ modal: true,
+ modalUrl: `/api/ExecDeleteGDAPRoleMapping?&GroupId=!GroupId`,
+ modalMessage:
+ 'Are you sure you want to delete this role mapping? (Note: This does not delete the associated security groups or modify any GDAP relationships.)',
+ },
+ ],
+ keyField: 'GroupId',
+ },
}}
/>
From 2b29be34c169313a0e6799bdaec59a88cc26667a Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Wed, 9 Aug 2023 00:21:57 +0200
Subject: [PATCH 26/56] added severity to alerts
---
src/views/cipp/CIPPSettings.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/views/cipp/CIPPSettings.js b/src/views/cipp/CIPPSettings.js
index 59c2d1816872..d4af85fce903 100644
--- a/src/views/cipp/CIPPSettings.js
+++ b/src/views/cipp/CIPPSettings.js
@@ -1134,7 +1134,7 @@ const NotificationsSettings = () => {
]}
/>
-
+
{
{ value: 'Alert', name: 'Alert' },
{ value: 'Error', name: 'Error' },
{ value: 'Info', name: 'Info' },
+ { value: 'Warn', name: 'Warn' },
]}
/>
From 2d6a9109643ee03be9ed2030abf1db6b80518f41 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Wed, 9 Aug 2023 20:53:09 +0200
Subject: [PATCH 27/56] added geo ip lookup
---
src/_nav.js | 5 +
src/routes.js | 7 +
.../tenant/administration/GeoIPLookup.js | 153 ++++++++++++++++++
3 files changed, 165 insertions(+)
create mode 100644 src/views/tenant/administration/GeoIPLookup.js
diff --git a/src/_nav.js b/src/_nav.js
index c3f260b1a586..5f802d6144bc 100644
--- a/src/_nav.js
+++ b/src/_nav.js
@@ -156,6 +156,11 @@ const _nav = [
name: 'Application Approval',
to: '/tenant/administration/appapproval',
},
+ {
+ component: CNavItem,
+ name: 'Geo IP Lookup',
+ to: '/tenant/tools/geoiplookup',
+ },
{
component: CNavItem,
name: 'Tenant Lookup',
diff --git a/src/routes.js b/src/routes.js
index b687ff1e4332..94181b42074f 100644
--- a/src/routes.js
+++ b/src/routes.js
@@ -17,6 +17,8 @@ const AddGroupTemplates = React.lazy(() =>
const DeployGroupTemplates = React.lazy(() =>
import('src/views/identity/administration/DeployGroupTemplate'),
)
+const GeoIPLookup = React.lazy(() => import('src/views/tenant/administration/GeoIPLookup'))
+
const TenantLookup = React.lazy(() => import('src/views/tenant/administration/TenantLookup'))
const GroupTemplates = React.lazy(() => import('src/views/identity/administration/GroupTemplates'))
@@ -378,6 +380,11 @@ const routes = [
name: 'Tenant Lookup',
component: TenantLookup,
},
+ {
+ path: '/tenant/tools/geoiplookup',
+ name: 'Geo IP Lookup',
+ component: GeoIPLookup,
+ },
{ path: '/tenant/standards/alert-list', name: 'Alert List (Alpha)', component: ListAlerts },
{ path: '/endpoint', name: 'Endpoint' },
{ path: '/endpoint/applications', name: 'Applications' },
diff --git a/src/views/tenant/administration/GeoIPLookup.js b/src/views/tenant/administration/GeoIPLookup.js
new file mode 100644
index 000000000000..5f346a30861e
--- /dev/null
+++ b/src/views/tenant/administration/GeoIPLookup.js
@@ -0,0 +1,153 @@
+import React, { useEffect, useState } from 'react'
+import {
+ CButton,
+ CCard,
+ CCardBody,
+ CCardHeader,
+ CCardTitle,
+ CCol,
+ CCollapse,
+ CForm,
+ CFormInput,
+ CInputGroup,
+ CRow,
+ CSpinner,
+} from '@coreui/react'
+import useQuery from 'src/hooks/useQuery'
+import { Field, Form } from 'react-final-form'
+import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
+import { faBook, faSearch } from '@fortawesome/free-solid-svg-icons'
+import { useSelector } from 'react-redux'
+import { useNavigate } from 'react-router-dom'
+import { useLazyGenericGetRequestQuery } from 'src/store/api/app'
+import { CippContentCard } from 'src/components/layout'
+import Skeleton from 'react-loading-skeleton'
+import { domainsApi } from 'src/store/api/domains'
+
+const isValidTenantInput = (value) => {
+ // Check if the input is a valid IPAddress
+ const ipRegex = new RegExp('^([0-9]{1,3}\\.){3}[0-9]{1,3}$')
+ return !ipRegex.test(value)
+}
+
+const GeoIPLookup = () => {
+ let navigate = useNavigate()
+ const tenant = useSelector((state) => state.app.currentTenant)
+ let query = useQuery()
+ const ip = query.get('ip')
+ const SearchNow = query.get('SearchNow')
+ const [visibleA, setVisibleA] = useState(true)
+ const handleSubmit = async (values) => {
+ setVisibleA(false)
+
+ const shippedValues = {
+ ip: values.domain,
+ SearchNow: true,
+ random: (Math.random() + 1).toString(36).substring(7),
+ }
+ var queryString = Object.keys(shippedValues)
+ .map((key) => key + '=' + shippedValues[key])
+ .join('&')
+
+ navigate(`?${queryString}`)
+ }
+ const [execGraphRequest, graphrequest] = useLazyGenericGetRequestQuery()
+
+ useEffect(() => {
+ if (ip) {
+ execGraphRequest({
+ path: 'api/ExecGeoIPLookup',
+ params: {
+ IP: ip,
+ },
+ })
+ }
+ }, [execGraphRequest, tenant.defaultDomainName, query, ip])
+
+ return (
+
+
+
+
+
+
+ Geo IP Lookup
+
+
+
+
+
+
+ {ip && (
+
+
+
+
+ IP Address
+ {graphrequest.isFetching && }
+ {ip}
+
+
+ Range
+ {graphrequest.isFetching && }
+ {graphrequest.data?.startaddress} - {graphrequest.data?.endAddress}
+
+
+ Owner
+ {graphrequest.isFetching && }
+ {graphrequest.data?.OrgRef}
+
+
+
+
+ Subnet Name
+ {graphrequest.isFetching && }
+ {graphrequest.data?.SubnetName}
+
+
+ Geo IP Location
+ {graphrequest.isFetching && }
+ {graphrequest.data?.location?.countryCode} - {graphrequest.data?.location?.cityName}
+
+
+
+
+ )}
+
+ )
+}
+
+export default GeoIPLookup
From 41d97705451f544d8fad096d8eb0b09b3b1473ed Mon Sep 17 00:00:00 2001
From: John Duprey
Date: Wed, 9 Aug 2023 15:04:57 -0400
Subject: [PATCH 28/56] Add exportSelector to license exclusion
---
src/views/cipp/CIPPSettings.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/views/cipp/CIPPSettings.js b/src/views/cipp/CIPPSettings.js
index 59c2d1816872..2b8c16746d79 100644
--- a/src/views/cipp/CIPPSettings.js
+++ b/src/views/cipp/CIPPSettings.js
@@ -1243,12 +1243,14 @@ const LicenseSettings = () => {
{
name: 'Display Name',
selector: (row) => row['Product_Display_Name'],
+ exportSelector: 'Product_Display_Name',
sortable: true,
minWidth: '300px',
},
{
name: 'License ID',
selector: (row) => row['GUID'],
+ exportSelector: 'GUID',
sortable: true,
minWidth: '350px',
},
From 7cbd462c729ec11f502269adece95a5b238b6b98 Mon Sep 17 00:00:00 2001
From: STG-Tanner <102822322+STG-Tanner@users.noreply.github.com>
Date: Wed, 9 Aug 2023 14:49:03 -0500
Subject: [PATCH 29/56] Update M365Licenses.json
Updated to July 28th, 2023 revision.
---
src/data/M365Licenses.json | 40284 +++++++++++++++++++++++------------
1 file changed, 26210 insertions(+), 14074 deletions(-)
diff --git a/src/data/M365Licenses.json b/src/data/M365Licenses.json
index 6e01a92e19e5..a2773f8c871c 100644
--- a/src/data/M365Licenses.json
+++ b/src/data/M365Licenses.json
@@ -1,14074 +1,26210 @@
-[
- {
- "Product_Display_Name": "Advanced Communications",
- "String_Id": "ADV_COMMS",
- "GUID": "e4654015-5daf-4a48-9b37-4f309dddd88b",
- "Service_Plan_Name": "TEAMS_ADVCOMMS",
- "Service_Plan_Id": "604ec28a-ae18-4bc6-91b0-11da94504ba9",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Communications"
- },
- {
- "Product_Display_Name": "AI Builder Capacity add-on",
- "String_Id": "CDSAICAPACITY",
- "GUID": "d2dea78b-507c-4e56-b400-39447f4738f8",
- "Service_Plan_Name": "CDSAICAPACITY",
- "Service_Plan_Id": "a7c70a41-5e02-4271-93e6-d9b4184d83f5",
- "Service_Plans_Included_Friendly_Names": "AI Builder capacity add-on"
- },
- {
- "Product_Display_Name": "AI Builder Capacity add-on",
- "String_Id": "CDSAICAPACITY",
- "GUID": "d2dea78b-507c-4e56-b400-39447f4738f8",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "APP CONNECT IW",
- "String_Id": "SPZA_IW",
- "GUID": "8f0c5670-4e56-4892-b06d-91c085d7004f",
- "Service_Plan_Name": "SPZA",
- "Service_Plan_Id": "0bfc98ed-1dbc-4a97-b246-701754e48b17",
- "Service_Plans_Included_Friendly_Names": "APP CONNECT"
- },
- {
- "Product_Display_Name": "APP CONNECT IW",
- "String_Id": "SPZA_IW",
- "GUID": "8f0c5670-4e56-4892-b06d-91c085d7004f",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "Microsoft 365 Audio Conferencing",
- "String_Id": "MCOMEETADV",
- "GUID": "0c266dff-15dd-4b49-8397-2bb16070ed52",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
- },
- {
- "Product_Display_Name": "AZURE ACTIVE DIRECTORY BASIC",
- "String_Id": "AAD_BASIC",
- "GUID": "2b9c8e7c-319c-43a2-a2a0-48c5c6161de7",
- "Service_Plan_Name": "AAD_BASIC",
- "Service_Plan_Id": "c4da7f8a-5ee2-4c99-a7e1-87d2df57f6fe",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY BASIC"
- },
- {
- "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1",
- "String_Id": "AAD_PREMIUM",
- "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1"
- },
- {
- "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1",
- "String_Id": "AAD_PREMIUM",
- "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY"
- },
- {
- "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1",
- "String_Id": "AAD_PREMIUM",
- "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P1",
- "String_Id": "AAD_PREMIUM",
- "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION"
- },
- {
- "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2",
- "String_Id": "AAD_PREMIUM_P2",
- "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1"
- },
- {
- "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2",
- "String_Id": "AAD_PREMIUM_P2",
- "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b",
- "Service_Plan_Name": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P2"
- },
- {
- "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2",
- "String_Id": "AAD_PREMIUM_P2",
- "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY"
- },
- {
- "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2",
- "String_Id": "AAD_PREMIUM_P2",
- "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "AZURE ACTIVE DIRECTORY PREMIUM P2",
- "String_Id": "AAD_PREMIUM_P2",
- "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION"
- },
- {
- "Product_Display_Name": "AZURE INFORMATION PROTECTION PLAN 1",
- "String_Id": "RIGHTSMANAGEMENT",
- "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1"
- },
- {
- "Product_Display_Name": "AZURE INFORMATION PROTECTION PLAN 1",
- "String_Id": "RIGHTSMANAGEMENT",
- "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS"
- },
- {
- "Product_Display_Name": "Business Apps (free)",
- "String_Id": "SMB_APPS",
- "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96",
- "Service_Plan_Name": "DYN365BC_MS_INVOICING",
- "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726",
- "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing"
- },
- {
- "Product_Display_Name": "Business Apps (free)",
- "String_Id": "SMB_APPS",
- "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "COMMON AREA PHONE",
- "String_Id": "MCOCAP",
- "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
- },
- {
- "Product_Display_Name": "COMMON AREA PHONE",
- "String_Id": "MCOCAP",
- "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS"
- },
- {
- "Product_Display_Name": "COMMON AREA PHONE",
- "String_Id": "MCOCAP",
- "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "Common Area Phone for GCC",
- "String_Id": "MCOCAP_GOV",
- "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3",
- "Service_Plan_Name": "MCOEV_GOV",
- "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government"
- },
- {
- "Product_Display_Name": "Common Area Phone for GCC",
- "String_Id": "MCOCAP_GOV",
- "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3",
- "Service_Plan_Name": "TEAMS_GOV",
- "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government"
- },
- {
- "Product_Display_Name": "Common Area Phone for GCC",
- "String_Id": "MCOCAP_GOV",
- "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3",
- "Service_Plan_Name": "MCOSTANDARD_GOV",
- "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government"
- },
- {
- "Product_Display_Name": "Common Data Service Database Capacity",
- "String_Id": "CDS_DB_CAPACITY",
- "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0",
- "Service_Plan_Name": "CDS_DB_CAPACITY",
- "Service_Plan_Id": "360bcc37-0c11-4264-8eed-9fa7a3297c9b",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Database Capacity"
- },
- {
- "Product_Display_Name": "Common Data Service Database Capacity",
- "String_Id": "CDS_DB_CAPACITY",
- "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Common Data Service Log Capacity",
- "String_Id": "CDS_LOG_CAPACITY",
- "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395",
- "Service_Plan_Name": "CDS_LOG_CAPACITY",
- "Service_Plan_Id": "dc48f5c5-e87d-43d6-b884-7ac4a59e7ee9",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Log Capacity"
- },
- {
- "Product_Display_Name": "Common Data Service Log Capacity",
- "String_Id": "CDS_LOG_CAPACITY",
- "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "COMMUNICATIONS CREDITS",
- "String_Id": "MCOPSTNC",
- "GUID": "47794cd0-f0e5-45c5-9033-2eb6b5fc84e0",
- "Service_Plan_Name": "MCOPSTNC",
- "Service_Plan_Id": "505e180f-f7e0-4b65-91d4-00d670bbd18c",
- "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS CREDITS"
- },
- {
- "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)",
- "String_Id": "CRMSTORAGE",
- "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)",
- "String_Id": "CRMSTORAGE",
- "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d",
- "Service_Plan_Name": "CRMSTORAGE",
- "Service_Plan_Id": "77866113-0f3e-4e6e-9666-b1e25c6f99b0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Storage Add-On"
- },
- {
- "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)",
- "String_Id": "CRMINSTANCE",
- "GUID": "9d776713-14cb-4697-a21d-9a52455c738a",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)",
- "String_Id": "CRMINSTANCE",
- "GUID": "9d776713-14cb-4697-a21d-9a52455c738a",
- "Service_Plan_Name": "CRMINSTANCE",
- "Service_Plan_Id": "eeea837a-c885-4167-b3d5-ddde30cbd85f",
- "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Instance"
- },
- {
- "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)",
- "String_Id": "CRMTESTINSTANCE",
- "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)",
- "String_Id": "CRMTESTINSTANCE",
- "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72",
- "Service_Plan_Name": "CRMTESTINSTANCE",
- "Service_Plan_Id": "a98b7619-66c7-4885-bdfc-1d9c8c3d279f",
- "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Additional Test Instance"
- },
- {
- "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets",
- "String_Id": "DYN365_ASSETMANAGEMENT",
- "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75",
- "Service_Plan_Name": "D365_AssetforSCM",
- "Service_Plan_Id": "90467813-5b40-40d4-835c-abd48009b1d9",
- "Service_Plans_Included_Friendly_Names": "Asset Maintenance Add-in"
- },
- {
- "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets",
- "String_Id": "DYN365_ASSETMANAGEMENT",
- "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central Additional Environment Addon",
- "String_Id": "DYN365_BUSCENTRAL_ADD_ENV_ADDON",
- "GUID": "a58f5506-b382-44d4-bfab-225b2fbf8390",
- "Service_Plan_Name": "DYN365_BUSCENTRAL_ENVIRONMENT",
- "Service_Plan_Id": "d397d6c6-9664-4502-b71c-66f39c400ca4",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Additional Environment Addon"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central Database Capacity",
- "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY",
- "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74",
- "Service_Plan_Name": "DYN365_BUSCENTRAL_DB_CAPACITY",
- "Service_Plan_Id": "ae6b27b3-fe31-4e77-ae06-ec5fabbc103a",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Database Capacity"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central Database Capacity",
- "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY",
- "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central Essentials",
- "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL",
- "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa",
- "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS",
- "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Business Central Essentials"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central Essentials",
- "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL",
- "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central Essentials",
- "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL",
- "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central Essentials",
- "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL",
- "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central External Accountant",
- "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU",
- "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4",
- "Service_Plan_Name": "DYN365_FINANCIALS_ACCOUNTANT",
- "Service_Plan_Id": "170991d7-b98e-41c5-83d4-db2052e1795f",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central External Accountant"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central External Accountant",
- "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU",
- "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central External Accountant",
- "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU",
- "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central External Accountant",
- "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU",
- "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central for IWs",
- "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU",
- "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd",
- "Service_Plan_Name": "PROJECT_MADEIRA_PREVIEW_IW",
- "Service_Plan_Id": "3f2afeed-6fb5-4bf9-998f-f2912133aead",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central for IWs"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central for IWs",
- "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU",
- "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central Premium",
- "String_Id": "DYN365_BUSCENTRAL_PREMIUM",
- "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029",
- "Service_Plan_Name": "DYN365_BUSCENTRAL_PREMIUM",
- "Service_Plan_Id": "8e9002c0-a1d8-4465-b952-817d2948e6e2",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Premium"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central Premium",
- "String_Id": "DYN365_BUSCENTRAL_PREMIUM",
- "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central Premium",
- "String_Id": "DYN365_BUSCENTRAL_PREMIUM",
- "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 Business Central Premium",
- "String_Id": "DYN365_BUSCENTRAL_PREMIUM",
- "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "D365_CSI_EMBED_CE",
- "Service_Plan_Id": "1412cdc1-d593-4ad1-9050-40c30ad0b023",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CE Plan"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "DYN365_ENTERPRISE_P1",
- "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 P1"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "D365_ProjectOperations",
- "Service_Plan_Id": "69f07c66-bee4-4222-b051-195095efee5b",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "D365_ProjectOperationsCDS",
- "Service_Plan_Id": "18fa3aba-b085-4105-87d7-55617b8585e6",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "FLOW_DYN_P2",
- "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57",
- "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "Forms_Pro_CE",
- "Service_Plan_Id": "97f29a83-1a20-44ff-bf48-5e4ad11f3e51",
- "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Engagement Plan"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "NBENTERPRISE",
- "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
- "Service_Plans_Included_Friendly_Names": "Microsoft Social Engagement Enterprise"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the web"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "POWERAPPS_DYN_P2",
- "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS",
- "Service_Plan_Id": "0a05d977-a21a-45b2-91ce-61c240dbafa2",
- "Service_Plans_Included_Friendly_Names": "Project for Project Operations"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
- "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
- "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "SHAREPOINT_PROJECT",
- "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
- "Service_Plans_Included_Friendly_Names": "Project Online Service"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
- "String_Id": "DYN365_ENTERPRISE_PLAN1",
- "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Service Insights Trial",
- "String_Id": "DYN365_AI_SERVICE_INSIGHTS",
- "GUID": "61e6bd70-fbdb-4deb-82ea-912842f39431",
- "Service_Plan_Name": "DYN365_AI_SERVICE_INSIGHTS",
- "Service_Plan_Id": "4ade5aa6-5959-4d2c-bf0a-f4c9e2cc00f2",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Trial"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice Trial",
- "String_Id": "FORMS_PRO",
- "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c",
- "Service_Plan_Name": "DYN365_CDS_FORMS_PRO",
- "Service_Plan_Id": "363430d1-e3f7-43bc-b07b-767b6bb95e4b",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice Trial",
- "String_Id": "FORMS_PRO",
- "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c",
- "Service_Plan_Name": "FORMS_PRO",
- "Service_Plan_Id": "17efdd9f-c22c-4ad8-b48e-3b1f3ee1dc9a",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice Trial",
- "String_Id": "FORMS_PRO",
- "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice Trial",
- "String_Id": "FORMS_PRO",
- "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c",
- "Service_Plan_Name": "FORMS_PLAN_E5",
- "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice Trial",
- "String_Id": "FORMS_PRO",
- "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c",
- "Service_Plan_Name": "FLOW_FORMS_PRO",
- "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Service Professional",
- "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
- "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
- "Service_Plan_Name": "DYN365_CUSTOMER_SERVICE_PRO",
- "Service_Plan_Id": "6929f657-b31b-4947-b4ce-5066c3214f54",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Pro"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Service Professional",
- "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
- "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Service Professional",
- "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
- "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the web"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Service Professional",
- "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
- "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
- "Service_Plan_Name": "POWERAPPS_CUSTOMER_SERVICE_PRO",
- "Service_Plan_Id": "c507b04c-a905-4940-ada6-918891e6d3ad",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Customer Service Pro"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Service Professional",
- "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
- "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
- "Service_Plan_Name": "FLOW_CUSTOMER_SERVICE_PRO",
- "Service_Plan_Id": "0368fc9c-3721-437f-8b7d-3d0f888cdefc",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Customer Service Pro"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Service Professional",
- "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
- "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
- "Service_Plan_Name": "PROJECT_ESSENTIALS",
- "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
- "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Service Professional",
- "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
- "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
- "String_Id": "Forms_Pro_AddOn",
- "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
- "String_Id": "Forms_Pro_AddOn",
- "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d",
- "Service_Plan_Name": "Forms_Pro_AddOn",
- "Service_Plan_Id": "90a816f6-de5f-49fd-963c-df490d73b7b5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice Add-on"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
- "String_Id": "DYN365_CUSTOMER_VOICE_ADDON",
- "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782",
- "Service_Plan_Name": "CUSTOMER_VOICE_ADDON",
- "Service_Plan_Id": "e6e35e2d-2e7f-4e71-bc6f-2f40ed062f5d",
- "Service_Plans_Included_Friendly_Names": "Dynamics Customer Voice Add-On"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
- "String_Id": "DYN365_CUSTOMER_VOICE_ADDON",
- "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice USL",
- "String_Id": "Forms_Pro_USL",
- "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba",
- "Service_Plan_Name": "CDS_FORM_PRO_USL",
- "Service_Plan_Id": "e9830cfd-e65d-49dc-84fb-7d56b9aa2c89",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice USL",
- "String_Id": "Forms_Pro_USL",
- "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba",
- "Service_Plan_Name": "Forms_Pro_USL",
- "Service_Plan_Id": "3ca0766a-643e-4304-af20-37f02726339b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice USL"
- },
- {
- "Product_Display_Name": "Dynamics 365 Customer Voice USL",
- "String_Id": "Forms_Pro_USL",
- "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba",
- "Service_Plan_Name": "FLOW_FORMS_PRO",
- "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice"
- },
- {
- "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)",
- "String_Id": "CRM_ONLINE_PORTAL",
- "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)",
- "String_Id": "CRM_ONLINE_PORTAL",
- "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3",
- "Service_Plan_Name": "CRM_ONLINE_PORTAL",
- "Service_Plan_Id": "1d4e9cb1-708d-449c-9f71-943aa8ed1d6a",
- "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online - Portal Add-On"
- },
- {
- "Product_Display_Name": "Dynamics 365 Finance",
- "String_Id": "DYN365_FINANCE",
- "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
- "Service_Plan_Name": "DYN365_CDS_FINANCE",
- "Service_Plan_Id": "e95d7060-d4d9-400a-a2bd-a244bf0b609e",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Finance"
- },
- {
- "Product_Display_Name": "Dynamics 365 Finance",
- "String_Id": "DYN365_FINANCE",
- "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
- "Service_Plan_Name": "DYN365_REGULATORY_SERVICE",
- "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service"
- },
- {
- "Product_Display_Name": "Dynamics 365 Finance",
- "String_Id": "DYN365_FINANCE",
- "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Finance",
- "String_Id": "DYN365_FINANCE",
- "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
- "Service_Plan_Name": "D365_Finance",
- "Service_Plan_Id": "9f0e1b4e-9b33-4300-b451-b2c662cd4ff7",
- "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 for Finance"
- },
- {
- "Product_Display_Name": "Dynamics 365 Finance",
- "String_Id": "DYN365_FINANCE",
- "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 Finance",
- "String_Id": "DYN365_FINANCE",
- "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
- "GUID": "749742bf-0d37-4158-a120-33567104deeb",
- "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
- "Service_Plan_Id": "99340b49-fb81-4b1e-976b-8f2ae8e9394f",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
- "GUID": "749742bf-0d37-4158-a120-33567104deeb",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
- "GUID": "749742bf-0d37-4158-a120-33567104deeb",
- "Service_Plan_Name": "NBENTERPRISE",
- "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
- "GUID": "749742bf-0d37-4158-a120-33567104deeb",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
- "GUID": "749742bf-0d37-4158-a120-33567104deeb",
- "Service_Plan_Name": "PROJECT_ESSENTIALS",
- "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
- "GUID": "749742bf-0d37-4158-a120-33567104deeb",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR CUSTOMER SERVICE"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
- "GUID": "749742bf-0d37-4158-a120-33567104deeb",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR FINANCIALS BUSINESS EDITION",
- "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU",
- "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa",
- "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS",
- "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR FINANCIALS BUSINESS EDITION",
- "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU",
- "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR FINANCIALS BUSINESS EDITION",
- "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU",
- "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCIALS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
- "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
- "Service_Plan_Name": "DYN365_ENTERPRISE_P1",
- "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 CUSTOMER ENGAGEMENT PLAN"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
- "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
- "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
- "Service_Plan_Name": "NBENTERPRISE",
- "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
- "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
- "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
- "Service_Plan_Name": "PROJECT_ESSENTIALS",
- "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
- "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
- "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES AND CUSTOMER SERVICE ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
- "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES",
- "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
- "Service_Plan_Name": "DYN365_ENTERPRISE_SALES",
- "Service_Plan_Id": "2da8e897-7791-486b-b08f-cc63c8129df7",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SALES"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES",
- "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES",
- "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
- "Service_Plan_Name": "NBENTERPRISE",
- "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES",
- "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES",
- "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
- "Service_Plan_Name": "PROJECT_ESSENTIALS",
- "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
- "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES",
- "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SALES ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_SALES",
- "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT",
- "String_Id": "DYN365_SCM",
- "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
- "Service_Plan_Name": "DYN365_CDS_SUPPLYCHAINMANAGEMENT",
- "Service_Plan_Id": "b6a8b974-2956-4e14-ae81-f0384c363528",
- "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR DYNAMICS 365 SUPPLY CHAIN MANAGEMENT"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT",
- "String_Id": "DYN365_SCM",
- "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
- "Service_Plan_Name": "DYN365_REGULATORY_SERVICE",
- "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCE AND OPERATIONS ENTERPRISE EDITION - REGULATORY SERVICE"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT",
- "String_Id": "DYN365_SCM",
- "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
- "Service_Plan_Name": "D365_SCM",
- "Service_Plan_Id": "1224eae4-0d91-474a-8a52-27ec96a63fe7",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT",
- "String_Id": "DYN365_SCM",
- "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT",
- "String_Id": "DYN365_SCM",
- "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT",
- "String_Id": "DYN365_SCM",
- "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 for Talent",
- "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
- "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
- "Service_Plan_Name": "DYN365_CDS_DYN_APPS",
- "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
- },
- {
- "Product_Display_Name": "Dynamics 365 for Talent",
- "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
- "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
- "Service_Plan_Name": "Dynamics_365_Hiring_Free_PLAN",
- "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Attract"
- },
- {
- "Product_Display_Name": "Dynamics 365 for Talent",
- "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
- "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
- "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN",
- "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Onboard"
- },
- {
- "Product_Display_Name": "Dynamics 365 for Talent",
- "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
- "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
- "Service_Plan_Name": "Dynamics_365_for_HCM_Trial",
- "Service_Plan_Id": "5ed38b64-c3b7-4d9f-b1cd-0de18c9c4331",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for HCM Trial"
- },
- {
- "Product_Display_Name": "Dynamics 365 for Talent",
- "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
- "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 for Talent",
- "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
- "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
- },
- {
- "Product_Display_Name": "Dynamics 365 for Talent",
- "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
- "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
- "Service_Plan_Name": "DYN365_Enterprise_Talent_Attract_TeamMember",
- "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ATTRACT EXPERIENCE TEAM MEMBER"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
- "Service_Plan_Name": "DYN365_Enterprise_Talent_Onboard_TeamMember",
- "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ONBOARD EXPERIENCE"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
- "Service_Plan_Name": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "Service_Plan_Id": "6a54b05e-4fab-40e7-9828-428db3b336fa",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TEAM MEMBERS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
- "Service_Plan_Name": "DYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS",
- "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR OPERATIONS TEAM MEMBERS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
- "Service_Plan_Name": "Dynamics_365_for_Retail_Team_members",
- "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL TEAM MEMBERS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
- "Service_Plan_Name": "Dynamics_365_for_Talent_Team_members",
- "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT TEAM MEMBERS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
- "Service_Plan_Name": "FLOW_DYN_TEAM",
- "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
- "Service_Plan_Name": "POWERAPPS_DYN_TEAM",
- "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
- "Service_Plan_Name": "PROJECT_ESSENTIALS",
- "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
- "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 FOR TEAM MEMBERS ENTERPRISE EDITION",
- "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
- "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "Dynamics 365 Guides",
- "String_Id": "GUIDES_USER",
- "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60",
- "Service_Plan_Name": "DYN365_CDS_GUIDES",
- "Service_Plan_Id": "1315ade1-0410-450d-b8e3-8050e6da320f",
- "Service_Plans_Included_Friendly_Names": "Common Data Service"
- },
- {
- "Product_Display_Name": "Dynamics 365 Guides",
- "String_Id": "GUIDES_USER",
- "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60",
- "Service_Plan_Name": "GUIDES",
- "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides"
- },
- {
- "Product_Display_Name": "Dynamics 365 Guides",
- "String_Id": "GUIDES_USER",
- "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60",
- "Service_Plan_Name": "POWERAPPS_GUIDES",
- "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Guides"
- },
- {
- "Product_Display_Name": "Dynamics 365 Operations - Device",
- "String_Id": "Dynamics_365_for_Operations_Devices",
- "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd",
- "Service_Plan_Name": "DYN365_RETAIL_DEVICE",
- "Service_Plan_Id": "ceb28005-d758-4df7-bb97-87a617b93d6c",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Device"
- },
- {
- "Product_Display_Name": "Dynamics 365 Operations - Device",
- "String_Id": "Dynamics_365_for_Operations_Devices",
- "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd",
- "Service_Plan_Name": "Dynamics_365_for_OperationsDevices",
- "Service_Plan_Id": "2c9fb43e-915a-4d61-b6ca-058ece89fd66",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Devices"
- },
- {
- "Product_Display_Name": "Dynamics 365 Operations - Device",
- "String_Id": "Dynamics_365_for_Operations_Devices",
- "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing",
- "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU",
- "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7",
- "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier2",
- "Service_Plan_Id": "d8ba6fb2-c6b1-4f07-b7c8-5f2745e36b54",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations non-production multi-box instance for standard acceptance testing (Tier 2)"
- },
- {
- "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing",
- "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU",
- "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing",
- "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU",
- "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06",
- "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier4",
- "Service_Plan_Id": "f6b5efb1-1813-426f-96d0-9b4f7438714f",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Enterprise Edition - Sandbox Tier 4:Standard Performance Testing"
- },
- {
- "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing",
- "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU",
- "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS",
- "String_Id": "DYN365_ENTERPRISE_P1_IW",
- "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d",
- "Service_Plan_Name": "DYN365_ENTERPRISE_P1_IW",
- "Service_Plan_Id": "056a5f80-b4e0-4983-a8be-7ad254a113c9",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS",
- "String_Id": "DYN365_ENTERPRISE_P1_IW",
- "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "Dynamics 365 Remote Assist",
- "String_Id": "MICROSOFT_REMOTE_ASSIST",
- "GUID": "7a551360-26c4-4f61-84e6-ef715673e083",
- "Service_Plan_Name": "CDS_REMOTE_ASSIST",
- "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist"
- },
- {
- "Product_Display_Name": "Dynamics 365 Remote Assist",
- "String_Id": "MICROSOFT_REMOTE_ASSIST",
- "GUID": "7a551360-26c4-4f61-84e6-ef715673e083",
- "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST",
- "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd",
- "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist"
- },
- {
- "Product_Display_Name": "Dynamics 365 Remote Assist",
- "String_Id": "MICROSOFT_REMOTE_ASSIST",
- "GUID": "7a551360-26c4-4f61-84e6-ef715673e083",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens",
- "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS",
- "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89",
- "Service_Plan_Name": "CDS_REMOTE_ASSIST",
- "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist"
- },
- {
- "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens",
- "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS",
- "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89",
- "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST",
- "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd",
- "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist"
- },
- {
- "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens",
- "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS",
- "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "D365_SALES_ENT_ATTACH",
- "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323",
- "Service_Plan_Name": "D365_SALES_ENT_ATTACH",
- "Service_Plan_Id": "3ae52229-572e-414f-937c-ff35a87d4f29",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Enterprise Attach"
- },
- {
- "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer",
- "String_Id": "D365_SALES_ENT_ATTACH",
- "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD",
- "String_Id": "DYNAMICS_365_ONBOARDING_SKU",
- "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0",
- "Service_Plan_Name": "DYN365_CDS_DYN_APPS",
- "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935",
- "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD",
- "String_Id": "DYNAMICS_365_ONBOARDING_SKU",
- "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0",
- "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN",
- "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD",
- "String_Id": "DYNAMICS_365_ONBOARDING_SKU",
- "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0",
- "Service_Plan_Name": "Dynamics_365_Talent_Onboard",
- "Service_Plan_Id": "048a552e-c849-4027-b54c-4c7ead26150a",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TALENT: ONBOARD",
- "String_Id": "DYNAMICS_365_ONBOARDING_SKU",
- "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "DYNAMICS_365_FOR_RETAIL_TEAM_MEMBERS",
- "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL TEAM MEMBERS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "DYN365_ENTERPRISE_TALENT_ATTRACT_TEAMMEMBER",
- "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ATTRACT EXPERIENCE TEAM MEMBER"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "DYN365_ENTERPRISE_TALENT_ONBOARD_TEAMMEMBER",
- "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ONBOARD EXPERIENCE"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "DYNAMICS_365_FOR_TALENT_TEAM_MEMBERS",
- "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT TEAM MEMBERS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "DYN365_TEAM_MEMBERS",
- "Service_Plan_Id": "4092fdb5-8d81-41d3-be76-aaba4074530b",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 TEAM MEMBERS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "DYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS",
- "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR OPERATIONS TEAM MEMBERS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "FLOW_DYN_TEAM",
- "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "POWERAPPS_DYN_TEAM",
- "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "PROJECT_ESSENTIALS",
- "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
- "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 TEAM MEMBERS",
- "String_Id": "DYN365_TEAM_MEMBERS",
- "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT (PLAN 2)"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION",
- "String_Id": "Dynamics_365_for_Operations",
- "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
- "Service_Plan_Name": "DDYN365_CDS_DYN_P2",
- "Service_Plan_Id": "d1142cfd-872e-4e77-b6ff-d98ec5a51f66",
- "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION",
- "String_Id": "Dynamics_365_for_Operations",
- "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
- "Service_Plan_Name": "DYN365_TALENT_ENTERPRISE",
- "Service_Plan_Id": "65a1ebf4-6732-4f00-9dcb-3d115ffdeecd",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION",
- "String_Id": "Dynamics_365_for_Operations",
- "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
- "Service_Plan_Name": "Dynamics_365_for_Operations",
- "Service_Plan_Id": "95d2cd7b-1007-484b-8595-5e97e63fe189",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR_OPERATIONS"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION",
- "String_Id": "Dynamics_365_for_Operations",
- "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
- "Service_Plan_Name": "Dynamics_365_for_Retail",
- "Service_Plan_Id": "a9e39199-8369-444b-89c1-5fe65ec45665",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION",
- "String_Id": "Dynamics_365_for_Operations",
- "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
- "Service_Plan_Name": "DYNAMICS_365_HIRING_FREE_PLAN",
- "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 HIRING FREE PLAN"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION",
- "String_Id": "Dynamics_365_for_Operations",
- "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
- "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN",
- "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50",
- "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION",
- "String_Id": "Dynamics_365_for_Operations",
- "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
- "Service_Plan_Name": "FLOW_DYN_P2",
- "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 36"
- },
- {
- "Product_Display_Name": "DYNAMICS 365 UNF OPS PLAN ENT EDITION",
- "String_Id": "Dynamics_365_for_Operations",
- "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
- "Service_Plan_Name": "POWERAPPS_DYN_P2",
- "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3",
- "String_Id": "EMS",
- "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3",
- "String_Id": "EMS",
- "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3",
- "String_Id": "EMS",
- "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3",
- "String_Id": "EMS",
- "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3",
- "String_Id": "EMS",
- "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3",
- "String_Id": "EMS",
- "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E3",
- "String_Id": "EMS",
- "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5",
- "String_Id": "EMSPREMIUM",
- "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5",
- "String_Id": "EMSPREMIUM",
- "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
- "Service_Plan_Name": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P2"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5",
- "String_Id": "EMSPREMIUM",
- "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5",
- "String_Id": "EMSPREMIUM",
- "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
- "Service_Plan_Name": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P2"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5",
- "String_Id": "EMSPREMIUM",
- "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5",
- "String_Id": "EMSPREMIUM",
- "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5",
- "String_Id": "EMSPREMIUM",
- "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5",
- "String_Id": "EMSPREMIUM",
- "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
- "Service_Plan_Name": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT CLOUD APP SECURITY"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5",
- "String_Id": "EMSPREMIUM",
- "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
- "Service_Plan_Name": "ATA",
- "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR IDENTITY"
- },
- {
- "Product_Display_Name": "ENTERPRISE MOBILITY + SECURITY E5",
- "String_Id": "EMSPREMIUM",
- "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
- "String_Id": "EMS_GOV",
- "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
- "String_Id": "EMS_GOV",
- "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
- "String_Id": "EMS_GOV",
- "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
- "String_Id": "EMS_GOV",
- "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
- "String_Id": "EMS_GOV",
- "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
- "String_Id": "EMS_GOV",
- "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
- "String_Id": "EMS_GOV",
- "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
- "String_Id": "EMSPREMIUM_GOV",
- "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
- "String_Id": "EMSPREMIUM_GOV",
- "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
- "Service_Plan_Name": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
- "String_Id": "EMSPREMIUM_GOV",
- "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
- "String_Id": "EMSPREMIUM_GOV",
- "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
- "Service_Plan_Name": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
- "String_Id": "EMSPREMIUM_GOV",
- "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
- "String_Id": "EMSPREMIUM_GOV",
- "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
- "Service_Plan_Name": "RMS_S_ENTERPRISE)",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
- "String_Id": "EMSPREMIUM_GOV",
- "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
- "String_Id": "EMSPREMIUM_GOV",
- "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
- "Service_Plan_Name": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
- "String_Id": "EMSPREMIUM_GOV",
- "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
- "Service_Plan_Name": "ATA",
- "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
- },
- {
- "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
- "String_Id": "EMSPREMIUM_GOV",
- "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)",
- "String_Id": "EOP_ENTERPRISE_PREMIUM",
- "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640",
- "Service_Plan_Name": "EOP_ENTERPRISE_PREMIUM",
- "Service_Plan_Id": "75badc48-628e-4446-8460-41344d73abd6",
- "Service_Plans_Included_Friendly_Names": "Exchange Enterprise CAL Services (EOP DLP)"
- },
- {
- "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)",
- "String_Id": "EOP_ENTERPRISE_PREMIUM",
- "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Exchange Online (Plan 1)",
- "String_Id": "EXCHANGESTANDARD",
- "GUID": "4b9405b0-7788-4568-add1-99614e613b69",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
- },
- {
- "Product_Display_Name": "Exchange Online (Plan 1)",
- "String_Id": "EXCHANGESTANDARD",
- "GUID": "4b9405b0-7788-4568-add1-99614e613b69",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Exchange Online (Plan 1)",
- "String_Id": "EXCHANGESTANDARD",
- "GUID": "4b9405b0-7788-4568-add1-99614e613b69",
- "Service_Plan_Name": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
- },
- {
- "Product_Display_Name": "EXCHANGE ONLINE (PLAN 2)",
- "String_Id": "EXCHANGEENTERPRISE",
- "GUID": "19ec0d23-8335-4cbd-94ac-6050e30712fa",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE",
- "String_Id": "EXCHANGEARCHIVE_ADDON",
- "GUID": "ee02fd1b-340e-4a4b-b355-4a514e4c8943",
- "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON",
- "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE"
- },
- {
- "Product_Display_Name": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE SERVER",
- "String_Id": "EXCHANGEARCHIVE",
- "GUID": "90b5e015-709a-4b8b-b08e-3200f994494c",
- "Service_Plan_Name": "EXCHANGE_S_ARCHIVE",
- "Service_Plan_Id": "da040e0a-b393-4bea-bb76-928b3fa1cf5a",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE SERVER"
- },
- {
- "Product_Display_Name": "EXCHANGE ONLINE ESSENTIALS (ExO P1 BASED)",
- "String_Id": "EXCHANGEESSENTIALS",
- "GUID": "7fc0182e-d107-4556-8329-7caaa511197b",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
- },
- {
- "Product_Display_Name": "EXCHANGE ONLINE ESSENTIALS",
- "String_Id": "EXCHANGE_S_ESSENTIALS",
- "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b",
- "Service_Plan_Name": "EXCHANGE_S_ESSENTIALS",
- "Service_Plan_Id": "1126bef5-da20-4f07-b45e-ad25d2581aa8",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ESSENTIALS"
- },
- {
- "Product_Display_Name": "EXCHANGE ONLINE ESSENTIALS",
- "String_Id": "EXCHANGE_S_ESSENTIALS",
- "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b",
- "Service_Plan_Name": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)"
- },
- {
- "Product_Display_Name": "EXCHANGE ONLINE KIOSK",
- "String_Id": "EXCHANGEDESKLESS",
- "GUID": "80b2d799-d2ba-4d2a-8842-fb0d0f3a4b82",
- "Service_Plan_Name": "EXCHANGE_S_DESKLESS",
- "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE KIOSK"
- },
- {
- "Product_Display_Name": "EXCHANGE ONLINE POP",
- "String_Id": "EXCHANGETELCO",
- "GUID": "cb0a98a8-11bc-494c-83d9-c1b1ac65327e",
- "Service_Plan_Name": "EXCHANGE_B_STANDARD",
- "Service_Plan_Id": "90927877-dcff-4af6-b346-2332c0b15bb7",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE POP"
- },
- {
- "Product_Display_Name": "INTUNE",
- "String_Id": "INTUNE_A",
- "GUID": "061f9ace-7d42-4136-88ac-31dc755f143f",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
- },
- {
- "Product_Display_Name": "Microsoft Dynamics AX7 User Trial",
- "String_Id": "AX7_USER_TRIAL",
- "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0",
- "Service_Plan_Name": "ERP_TRIAL_INSTANCE",
- "Service_Plan_Id": "e2f705fd-2468-4090-8c58-fad6e6b1e724",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 Operations Trial Environment"
- },
- {
- "Product_Display_Name": "Microsoft Dynamics AX7 User Trial",
- "String_Id": "AX7_USER_TRIAL",
- "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication",
- "String_Id": "MFA_STANDALONE",
- "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication",
- "String_Id": "MFA_STANDALONE",
- "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)",
- "String_Id": "THREAT_INTELLIGENCE",
- "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e",
- "Service_Plan_Name": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)",
- "String_Id": "THREAT_INTELLIGENCE",
- "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)",
- "String_Id": "THREAT_INTELLIGENCE",
- "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A1",
- "String_Id": "M365EDU_A1",
- "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb",
- "Service_Plan_Name": "AAD_EDU",
- "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A1",
- "String_Id": "M365EDU_A1",
- "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb",
- "Service_Plan_Name": "INTUNE_EDU",
- "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
- "Service_Plans_Included_Friendly_Names": "Intune for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A1",
- "String_Id": "M365EDU_A1",
- "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 A1",
- "String_Id": "M365EDU_A1",
- "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb",
- "Service_Plan_Name": "WINDOWS_STORE",
- "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d",
- "Service_Plans_Included_Friendly_Names": "Windows Store Service"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "INTUNE_EDU",
- "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
- "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
- "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
- "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for Faculty",
- "String_Id": "M365EDU_A3_FACULTY",
- "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Flow for Office 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "INTUNE_EDU",
- "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
- "Service_Plans_Included_Friendly_Names": "Intune for Education"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
- "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
- "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A3 FOR STUDENTS",
- "String_Id": "M365EDU_A3_STUDENT",
- "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "INTUNE_EDU",
- "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
- "Service_Plans_Included_Friendly_Names": "Intune for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
- "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
- "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING",
- "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086",
- "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT",
- "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "INTUNE_EDU",
- "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
- "Service_Plans_Included_Friendly_Names": "Intune for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended",
- "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise (unattended)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
- "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
- "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING",
- "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086",
- "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
- "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
- "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P3"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics -(Premium"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Premium"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "ATA",
- "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
- "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "EXCEL_PREMIUM",
- "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_3",
- "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "INSIDER_RISK",
- "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "INTUNE_EDU",
- "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "ML_CLASSIFICATION",
- "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
- "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
- "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
- "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "SAFEDOCS",
- "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
- "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
- "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P3"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "PROJECT_O365_P3",
- "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
- "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
- "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for Faculty",
- "String_Id": "M365EDU_A5_FACULTY",
- "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "ATA",
- "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
- "Service_Plans_Included_Friendly_Names": "Azure Advanced Threat Protection"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Flow for Office 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "INTUNE_EDU",
- "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
- "Service_Plans_Included_Friendly_Names": "Intune for Education"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_3",
- "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
- "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
- "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "SAFEDOCS",
- "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
- "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 A5 FOR STUDENTS",
- "String_Id": "M365EDU_A5_STUDENT",
- "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "INTUNE_EDU",
- "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
- "Service_Plans_Included_Friendly_Names": "Intune for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "ATA",
- "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
- "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
- "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "SAFEDOCS",
- "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
- "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "PROJECT_O365_P3",
- "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING",
- "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086",
- "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
- "String_Id": "M365EDU_A5_STUUSEBNFT",
- "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "INTUNE_EDU",
- "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
- "Service_Plans_Included_Friendly_Names": "Intune for Education"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "ATA",
- "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
- "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
- "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "SAFEDOCS",
- "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
- "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "PROJECT_O365_P3",
- "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING",
- "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086",
- "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
- "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
- "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS",
- "String_Id": "O365_BUSINESS",
- "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS",
- "String_Id": "O365_BUSINESS",
- "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3",
- "Service_Plan_Name": "OFFICE_BUSINESS",
- "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS",
- "String_Id": "O365_BUSINESS",
- "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3",
- "Service_Plan_Name": "ONEDRIVESTANDARD",
- "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30",
- "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS",
- "String_Id": "O365_BUSINESS",
- "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS",
- "String_Id": "O365_BUSINESS",
- "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS",
- "String_Id": "SMB_BUSINESS",
- "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS",
- "String_Id": "SMB_BUSINESS",
- "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc",
- "Service_Plan_Name": "OFFICE_BUSINESS",
- "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS",
- "String_Id": "SMB_BUSINESS",
- "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc",
- "Service_Plan_Name": "ONEDRIVESTANDARD",
- "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30",
- "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS",
- "String_Id": "SMB_BUSINESS",
- "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR BUSINESS",
- "String_Id": "SMB_BUSINESS",
- "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE",
- "String_Id": "OFFICESUBSCRIPTION",
- "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE",
- "String_Id": "OFFICESUBSCRIPTION",
- "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE",
- "String_Id": "OFFICESUBSCRIPTION",
- "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
- "Service_Plan_Name": "ONEDRIVESTANDARD",
- "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30",
- "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE",
- "String_Id": "OFFICESUBSCRIPTION",
- "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 APPS FOR ENTERPRISE",
- "String_Id": "OFFICESUBSCRIPTION",
- "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC",
- "String_Id": "MCOMEETADV_GOC",
- "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5",
- "Service_Plan_Name": "EXCHANGE_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC",
- "String_Id": "MCOMEETADV_GOC",
- "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5",
- "Service_Plan_Name": "MCOMEETADV_GOV",
- "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "O365_BUSINESS_ESSENTIALS",
- "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS BASIC",
- "String_Id": "SMB_BUSINESS_ESSENTIALS",
- "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
- "Service_Plan_Name": "YAMMER_MIDSIZE",
- "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb",
- "Service_Plans_Included_Friendly_Names": "YAMMER MIDSIZE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "O365_SB_Relationship_Management",
- "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79",
- "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "OFFICE_BUSINESS",
- "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD",
- "String_Id": "O365_BUSINESS_PREMIUM",
- "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "O365_SB_Relationship_Management",
- "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79",
- "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "OFFICE_BUSINESS",
- "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS STANDARD - PREPAID LEGACY",
- "String_Id": "SMB_BUSINESS_PREMIUM",
- "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
- "Service_Plan_Name": "YAMMER_MIDSIZE",
- "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb",
- "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "AAD_SMB",
- "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102",
- "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON",
- "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "INTUNE_SMBIZ",
- "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT BOOKINGS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "O365_SB_Relationship_Management",
- "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79",
- "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "OFFICE_BUSINESS",
- "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "STREAM_O365_E1",
- "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "WINBIZ",
- "Service_Plan_Id": "8e229017-d77b-43d5-9305-903395523b99",
- "Service_Plans_Included_Friendly_Names": "WINDOWS 10 BUSINESS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 BUSINESS PREMIUM",
- "String_Id": "SPB",
- "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Voice (US)",
- "String_Id": "BUSINESS_VOICE_MED2_TELCO",
- "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Voice (US)",
- "String_Id": "BUSINESS_VOICE_MED2_TELCO",
- "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609",
- "Service_Plan_Name": "MCOPSTN1",
- "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Voice (US)",
- "String_Id": "BUSINESS_VOICE_MED2_TELCO",
- "GUID": "08d7bce8-6e16-490e-89db-1d508e5e9609",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan) for US",
- "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED",
- "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
- },
- {
- "Product_Display_Name": "Microsoft 365 Business Voice (without Calling Plan) for US",
- "String_Id": "BUSINESS_VOICE_DIRECTROUTING_MED",
- "GUID": "8330dae3-d349-44f7-9cad-1b23c64baabe",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 DOMESTIC CALLING PLAN (120 Minutes)",
- "String_Id": "MCOPSTN_5",
- "GUID": "11dee6af-eca8-419f-8061-6864517c1875",
- "Service_Plan_Name": "MCOPSTN5",
- "Service_Plan_Id": "54a152dc-90de-4996-93d2-bc47e670fc06",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 DOMESTIC CALLING PLAN (120 min)"
- },
- {
- "Product_Display_Name": "Microsoft 365 Domestic Calling Plan for GCC",
- "String_Id": "MCOPSTN_1_GOV",
- "GUID": "923f58ab-fca1-46a1-92f9-89fda21238a8",
- "Service_Plan_Name": "MCOPSTN1_GOV",
- "Service_Plan_Id": "3c8a8792-7866-409b-bb61-1b20ace0368b",
- "Service_Plans_Included_Friendly_Names": "Domestic Calling for Government"
- },
- {
- "Product_Display_Name": "Microsoft 365 Domestic Calling Plan for GCC",
- "String_Id": "MCOPSTN_1_GOV",
- "GUID": "923f58ab-fca1-46a1-92f9-89fda21238a8",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "FORMS_PLAN_E3",
- "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E3)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E3 SKU"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
- "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
- "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 E3",
- "String_Id": "SPE_E3",
- "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "YAMMER ENTERPRISE"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended",
- "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
- "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
- "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "FORMS_PLAN_E3",
- "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
- "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
- "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (Original)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
- "String_Id": "SPE_E3_RPA1",
- "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "TEAMS_AR_DOD",
- "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office Online"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
- "String_Id": "SPE_E3_USGOV_DOD",
- "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "TEAMS_AR_GCCHIGH",
- "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office Online"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
- "String_Id": "SPE_E3_USGOV_GCCHIGH",
- "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Audio Conferencing"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "ATA",
- "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
- "Service_Plans_Included_Friendly_Names": "Azure Advanced Threat Protection"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Flow for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "FORMS_PLAN_E5",
- "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office Online"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Phone System"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
- "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (Original)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5",
- "String_Id": "SPE_E5",
- "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
- "Service_Plan_Name": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
- "Service_Plan_Name": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
- "Service_Plan_Name": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
- "Service_Plan_Name": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
- "Service_Plan_Name": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Compliance",
- "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
- "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
- "Service_Plan_Name": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Security",
- "String_Id": "IDENTITY_THREAT_PROTECTION",
- "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
- "Service_Plan_Name": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Security",
- "String_Id": "IDENTITY_THREAT_PROTECTION",
- "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
- "Service_Plan_Name": "ATA",
- "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
- "Service_Plans_Included_Friendly_Names": "Azure Advanced Threat Protection"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Security",
- "String_Id": "IDENTITY_THREAT_PROTECTION",
- "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
- "Service_Plan_Name": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Security",
- "String_Id": "IDENTITY_THREAT_PROTECTION",
- "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Security",
- "String_Id": "IDENTITY_THREAT_PROTECTION",
- "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Security",
- "String_Id": "IDENTITY_THREAT_PROTECTION",
- "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Security",
- "String_Id": "IDENTITY_THREAT_PROTECTION",
- "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
- "Service_Plan_Name": "SAFEDOCS",
- "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
- "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5",
- "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5",
- "GUID": "44ac31e7-2999-4304-ad94-c948886741d4",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5",
- "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5",
- "GUID": "44ac31e7-2999-4304-ad94-c948886741d4",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5",
- "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5",
- "GUID": "44ac31e7-2999-4304-ad94-c948886741d4",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5",
- "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5",
- "GUID": "44ac31e7-2999-4304-ad94-c948886741d4",
- "Service_Plan_Name": "SAFEDOCS",
- "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
- "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "STREAM_O365_K",
- "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 K SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "SHAREPOINTDESKLESS",
- "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
- "Service_Plans_Included_Friendly_Names": "SharePoint Online Kiosk"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "MCOIMP",
- "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1",
- "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "DYN365_CDS_O365_F1",
- "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "CDS_O365_F1",
- "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "EXCHANGE_S_DESKLESS",
- "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "FORMS_PLAN_K",
- "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "KAIZALA_O365_P1",
- "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "STREAM_O365_K",
- "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 K SKU"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the web"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "POWERAPPS_O365_S1",
- "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 K1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "FLOW_O365_S1",
- "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 K1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1",
- "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 F1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "PROJECT_O365_F3",
- "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "SHAREPOINTDESKLESS",
- "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
- "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "MCOIMP",
- "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE",
- "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1",
- "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "WIN10_ENT_LOC_F1",
- "Service_Plan_Id": "e041597c-9c7f-4ed9-99b0-2663301576f7",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise E3 (local only)"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
- },
- {
- "Product_Display_Name": "Microsoft 365 F3",
- "String_Id": "SPE_F1",
- "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
- },
- {
- "Product_Display_Name": "MICROSOFT FLOW FREE",
- "String_Id": "FLOW_FREE",
- "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d",
- "Service_Plan_Name": "DYN365_CDS_VIRAL",
- "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0",
- "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE - VIRAL"
- },
- {
- "Product_Display_Name": "MICROSOFT FLOW FREE",
- "String_Id": "FLOW_FREE",
- "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "MICROSOFT FLOW FREE",
- "String_Id": "FLOW_FREE",
- "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d",
- "Service_Plan_Name": "FLOW_P2_VIRAL",
- "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170",
- "Service_Plans_Included_Friendly_Names": "FLOW FREE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC",
- "String_Id": "MCOMEETADV_GOV",
- "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 AUDIO CONFERENCING FOR GCC",
- "String_Id": "MCOMEETADV_GOV",
- "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5",
- "Service_Plan_Name": "MCOMEETADV_GOV",
- "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
- "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "INSIDER_RISK",
- "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
- "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "ML_CLASSIFICATION",
- "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
- "Service_Plans_Included_Friendly_Names": "Microsoft ML-based classification"
- },
- {
- "Product_Display_Name": "Microsoft 365 E5 Suite features",
- "String_Id": "M365_E5_SUITE_COMPONENTS",
- "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
- "Service_Plan_Name": "SAFEDOCS",
- "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
- "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "AAD_PREMIUM"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "RMS_S_PREMIUM",
- "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
- "Service_Plans_Included_Friendly_Names": "RMS_S_PREMIUM"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
- "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
- "Service_Plans_Included_Friendly_Names": "ADALLOM_S_DISCOVERY"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "DYN365_CDS_O365_F1",
- "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f",
- "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_F1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "EXCHANGE_S_DESKLESS",
- "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_DESKLESS"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "MFA_PREMIUM"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "INTUNE_A"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT_SEARCH"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "STREAM_O365_K",
- "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9",
- "Service_Plans_Included_Friendly_Names": "STREAM_O365_K"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "INTUNE_O365"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "SHAREPOINTDESKLESS",
- "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTDESKLESS"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "MCOIMP",
- "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
- "Service_Plans_Included_Friendly_Names": "MCOIMP"
- },
- {
- "Product_Display_Name": "Microsoft 365 F1",
- "String_Id": "M365_F1_COMM",
- "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "AAD_PREMIUM",
- "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
- "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
- "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "RMS_S_PREMIUM_GOV",
- "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98",
- "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT PREMIUM FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC",
- "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc",
- "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE - O365 P2 GCC"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "CDS_O365_P2_GCC",
- "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41",
- "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P2 GCC"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE PLAN 2G"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "FORMS_GOV_E3",
- "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc",
- "Service_Plans_Included_Friendly_Names": "FORMS FOR GOVERNMENT (PLAN E3)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "CONTENT_EXPLORER",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – PREMIUM"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "CONTENTEXPLORER_STANDARD",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – STANDARD"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION FOR OFFICE 365 – STANDARD"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "MYANALYTICS_P2_GOV",
- "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0",
- "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV",
- "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 APPS FOR ENTERPRISE G"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "MFA_PREMIUM",
- "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT Azure Multi-Factor Authentication"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT BOOKINGS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "STREAM_O365_E3_GOV",
- "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 FOR GOVERNMENT (E3)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "TEAMS_GOV",
- "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV",
- "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 PLANNER FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "SHAREPOINTWAC_GOV",
- "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
- "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB (GOVERNMENT)"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "POWERAPPS_O365_P2_GOV",
- "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3",
- "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365 FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "FLOW_O365_P2_GOV",
- "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b",
- "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365 FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
- "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 2G"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 G3 GCC",
- "String_Id": "M365_G3_GOV",
- "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
- "Service_Plan_Name": "MCOSTANDARD_GOV",
- "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM",
- "String_Id": "MCOEV",
- "GUID": "e43b5b99-8dfb-405f-9987-dc307f34bcbd",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR DOD",
- "String_Id": "MCOEV_DOD",
- "GUID": "d01d9287-694b-44f3-bcc5-ada78c8d953e",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR FACULTY",
- "String_Id": "MCOEV_FACULTY",
- "GUID": "d979703c-028d-4de5-acbf-7955566b69b9",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTE"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR GCC",
- "String_Id": "MCOEV_GOV",
- "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR GCC",
- "String_Id": "MCOEV_GOV",
- "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85",
- "Service_Plan_Name": "MCOEV_GOV",
- "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR GCCHIGH",
- "String_Id": "MCOEV_GCCHIGH",
- "GUID": "7035277a-5e49-4abc-a24f-0ec49c501bb5",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR SMALL AND MEDIUM BUSINESS",
- "String_Id": "MCOEVSMB_1",
- "GUID": "aa6791d3-bb09-4bc2-afed-c30c3fe26032",
- "Service_Plan_Name": "MCOEVSMB",
- "Service_Plan_Id": "ed777b71-af04-42ca-9798-84344c66f7c6",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS CLOUD PBX FOR SMALL AND MEDIUM BUSINESS"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR STUDENTS",
- "String_Id": "MCOEV_STUDENT",
- "GUID": "1f338bbc-767e-4a1e-a2d4-b73207cc5b93",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM FOR TELSTRA",
- "String_Id": "MCOEV_TELSTRA",
- "GUID": "ffaf2d68-1c95-4eb3-9ddd-59b81fba0f61",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM_USGOV_DOD",
- "String_Id": "MCOEV_USGOV_DOD",
- "GUID": "b0e7de67-e503-4934-b729-53d595ba5cd1",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM_USGOV_GCCHIGH",
- "String_Id": "MCOEV_USGOV_GCCHIGH",
- "GUID": "985fcb26-7b94-475b-b512-89356697be71",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
- },
- {
- "Product_Display_Name": "MICROSOFT 365 PHONE SYSTEM - VIRTUAL USER",
- "String_Id": "PHONESYSTEM_VIRTUALUSER",
- "GUID": "440eaaa8-b3e0-484b-a8be-62870b9ba70a",
- "Service_Plan_Name": "MCOEV_VIRTUALUSER",
- "Service_Plan_Id": "f47330e9-c134-43b3-9993-e7f004506889",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM VIRTUAL USER"
- },
- {
- "Product_Display_Name": "Microsoft 365 Phone System - Virtual User for GCC",
- "String_Id": "PHONESYSTEM_VIRTUALUSER_GOV",
- "GUID": "2cf22bcb-0c9e-4bc6-8daf-7e7654c0f285",
- "Service_Plan_Name": "MCOEV_VIRTUALUSER_GOV",
- "Service_Plan_Id": "0628a73f-3b4a-4989-bd7b-0f8823144313",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System Virtual User for Government"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "AAD_PREMIUM_P2",
- "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "RMS_S_PREMIUM2",
- "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
- "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "BPOS_S_DlpAddOn",
- "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed",
- "Service_Plans_Included_Friendly_Names": "Data Loss Prevention"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON",
- "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving for Exchange Online"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Premium"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "ATA",
- "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
- "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "ML_CLASSIFICATION",
- "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
- "Service_Plans_Included_Friendly_Names": "Microsoft ML-based classification"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
- },
- {
- "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
- "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
- "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
- "Service_Plan_Name": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
- },
- {
- "Product_Display_Name": "MICROSOFT BUSINESS CENTER",
- "String_Id": "MICROSOFT_BUSINESS_CENTER",
- "GUID": "726a0894-2c77-4d65-99da-9775ef05aad1",
- "Service_Plan_Name": "MICROSOFT_BUSINESS_CENTER",
- "Service_Plan_Id": "cca845f9-fd51-4df6-b563-976a37c56ce0",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT BUSINESS CENTER"
- },
- {
- "Product_Display_Name": "Microsoft Cloud App Security",
- "String_Id": "ADALLOM_STANDALONE",
- "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Cloud App Security",
- "String_Id": "ADALLOM_STANDALONE",
- "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6",
- "Service_Plan_Name": "ADALLOM_S_STANDALONE",
- "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
- },
- {
- "Product_Display_Name": "MICROSOFT DEFENDER FOR ENDPOINT",
- "String_Id": "WIN_DEF_ATP",
- "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "MICROSOFT DEFENDER FOR ENDPOINT",
- "String_Id": "WIN_DEF_ATP",
- "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Endpoint Server",
- "String_Id": "MDATP_Server",
- "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Endpoint Server",
- "String_Id": "MDATP_Server",
- "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
- },
- {
- "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC",
- "String_Id": "CRMPLAN2",
- "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC",
- "String_Id": "CRMPLAN2",
- "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC",
- "String_Id": "CRMPLAN2",
- "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657",
- "Service_Plan_Name": "CRMPLAN2",
- "Service_Plan_Id": "bf36ca64-95c6-4918-9275-eb9f4ce2c04f",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE BASIC"
- },
- {
- "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE BASIC",
- "String_Id": "CRMPLAN2",
- "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Identity",
- "String_Id": "ATA",
- "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Identity",
- "String_Id": "ATA",
- "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5",
- "Service_Plan_Name": "ATA",
- "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Identity",
- "String_Id": "ATA",
- "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5",
- "Service_Plan_Name": "ADALLOM_FOR_AATP",
- "Service_Plan_Id": "61d18b02-6889-479f-8f36-56e6e0fe5792",
- "Service_Plans_Included_Friendly_Names": "SecOps Investigation for MDI"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC",
- "String_Id": "THREAT_INTELLIGENCE_GOV",
- "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d",
- "Service_Plan_Name": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC",
- "String_Id": "THREAT_INTELLIGENCE_GOV",
- "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d",
- "Service_Plan_Name": "ATP_ENTERPRISE_GOV",
- "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC",
- "String_Id": "THREAT_INTELLIGENCE_GOV",
- "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d",
- "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV",
- "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government"
- },
- {
- "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE",
- "String_Id": "CRMSTANDARD",
- "GUID": "d17b27af-3f49-4822-99f9-56a661538792",
- "Service_Plan_Name": "CRMSTANDARD",
- "Service_Plan_Id": "f9646fb2-e3b2-4309-95de-dc4833737456",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE PROFESSIONA"
- },
- {
- "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE",
- "String_Id": "CRMSTANDARD",
- "GUID": "d17b27af-3f49-4822-99f9-56a661538792",
- "Service_Plan_Name": "FLOW_DYN_APPS",
- "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE",
- "String_Id": "CRMSTANDARD",
- "GUID": "d17b27af-3f49-4822-99f9-56a661538792",
- "Service_Plan_Name": "MDM_SALES_COLLABORATION",
- "Service_Plan_Id": "3413916e-ee66-4071-be30-6f94d4adfeda",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS MARKETING SALES COLLABORATION - ELIGIBILITY CRITERIA APPLY"
- },
- {
- "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE",
- "String_Id": "CRMSTANDARD",
- "GUID": "d17b27af-3f49-4822-99f9-56a661538792",
- "Service_Plan_Name": "NBPROFESSIONALFORCRM",
- "Service_Plan_Id": "3e58e97c-9abe-ebab-cd5f-d543d1529634",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT PROFESSIONAL - ELIGIBILITY CRITERIA APPLY"
- },
- {
- "Product_Display_Name": "MICROSOFT DYNAMICS CRM ONLINE",
- "String_Id": "CRMSTANDARD",
- "GUID": "d17b27af-3f49-4822-99f9-56a661538792",
- "Service_Plan_Name": "POWERAPPS_DYN_APPS",
- "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
- },
- {
- "Product_Display_Name": "MS IMAGINE ACADEMY",
- "String_Id": "IT_ACADEMY_AD",
- "GUID": "ba9a34de-4489-469d-879c-0f0f145321cd",
- "Service_Plan_Name": "IT_ACADEMY_AD",
- "Service_Plan_Id": "d736def0-1fde-43f0-a5be-e3f8b2de6e41",
- "Service_Plans_Included_Friendly_Names": "MS IMAGINE ACADEMY"
- },
- {
- "Product_Display_Name": "Microsoft Intune Device",
- "String_Id": "INTUNE_A_D",
- "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Intune Device",
- "String_Id": "INTUNE_A_D",
- "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "MICROSOFT INTUNE DEVICE FOR GOVERNMENT",
- "String_Id": "INTUNE_A_D_GOV",
- "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
- },
- {
- "Product_Display_Name": "MICROSOFT INTUNE DEVICE FOR GOVERNMENT",
- "String_Id": "INTUNE_A_D_GOV",
- "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial",
- "String_Id": "POWERAPPS_VIRAL",
- "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4",
- "Service_Plan_Name": "DYN365_CDS_VIRAL",
- "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0",
- "Service_Plans_Included_Friendly_Names": "Common Data Service – VIRAL"
- },
- {
- "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial",
- "String_Id": "POWERAPPS_VIRAL",
- "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial",
- "String_Id": "POWERAPPS_VIRAL",
- "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4",
- "Service_Plan_Name": "FLOW_P2_VIRAL",
- "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170",
- "Service_Plans_Included_Friendly_Names": "Flow Free"
- },
- {
- "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial",
- "String_Id": "POWERAPPS_VIRAL",
- "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4",
- "Service_Plan_Name": "FLOW_P2_VIRAL_REAL",
- "Service_Plan_Id": "d20bfa21-e9ae-43fc-93c2-20783f0840c3",
- "Service_Plans_Included_Friendly_Names": "Flow P2 Viral"
- },
- {
- "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial",
- "String_Id": "POWERAPPS_VIRAL",
- "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4",
- "Service_Plan_Name": "POWERAPPS_P2_VIRAL",
- "Service_Plan_Id": "d5368ca3-357e-4acb-9c21-8495fb025d1f",
- "Service_Plans_Included_Friendly_Names": "PowerApps Trial"
- },
- {
- "Product_Display_Name": "MICROSOFT POWER AUTOMATE PLAN 2",
- "String_Id": "FLOW_P2",
- "GUID": "4755df59-3f73-41ab-a249-596ad72b5504",
- "Service_Plan_Name": "DYN365_CDS_P2",
- "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - P2"
- },
- {
- "Product_Display_Name": "MICROSOFT POWER AUTOMATE PLAN 2",
- "String_Id": "FLOW_P2",
- "GUID": "4755df59-3f73-41ab-a249-596ad72b5504",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "MICROSOFT POWER AUTOMATE PLAN 2",
- "String_Id": "FLOW_P2",
- "GUID": "4755df59-3f73-41ab-a249-596ad72b5504",
- "Service_Plan_Name": "FLOW_P2",
- "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d",
- "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT INTUNE SMB",
- "String_Id": "INTUNE_SMB",
- "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958",
- "Service_Plan_Name": "AAD_SMB",
- "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102",
- "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY"
- },
- {
- "Product_Display_Name": "MICROSOFT INTUNE SMB",
- "String_Id": "INTUNE_SMB",
- "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "MICROSOFT INTUNE SMB",
- "String_Id": "INTUNE_SMB",
- "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958",
- "Service_Plan_Name": "INTUNE_SMBIZ",
- "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
- },
- {
- "Product_Display_Name": "MICROSOFT INTUNE SMB",
- "String_Id": "INTUNE_SMB",
- "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
- },
- {
- "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)",
- "String_Id": "POWERFLOW_P2",
- "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b",
- "Service_Plan_Name": "DYN365_CDS_P2",
- "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - P2"
- },
- {
- "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)",
- "String_Id": "POWERFLOW_P2",
- "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)",
- "String_Id": "POWERFLOW_P2",
- "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b",
- "Service_Plan_Name": "POWERAPPS_P2",
- "Service_Plan_Id": "00527d7f-d5bc-4c2a-8d1e-6c0de2410c81",
- "Service_Plans_Included_Friendly_Names": "Power Apps (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)",
- "String_Id": "POWERFLOW_P2",
- "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b",
- "Service_Plan_Name": "FLOW_P2",
- "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d",
- "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)"
- },
- {
- "Product_Display_Name": "MICROSOFT STREAM",
- "String_Id": "STREAM",
- "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "MICROSOFT STREAM",
- "String_Id": "STREAM",
- "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6",
- "Service_Plan_Name": "MICROSOFTSTREAM",
- "Service_Plan_Id": "acffdce6-c30f-4dc2-81c0-372e33c515ec",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM"
- },
- {
- "Product_Display_Name": "Microsoft Stream Plan 2",
- "String_Id": "STREAM_P2",
- "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Stream Plan 2",
- "String_Id": "STREAM_P2",
- "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef",
- "Service_Plan_Name": "STREAM_P2",
- "Service_Plan_Id": "d3a458d0-f10d-48c2-9e44-86f3f684029e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream Plan 2"
- },
- {
- "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)",
- "String_Id": "STREAM_STORAGE",
- "GUID": "9bd7c846-9556-4453-a542-191d527209e8",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)",
- "String_Id": "STREAM_STORAGE",
- "GUID": "9bd7c846-9556-4453-a542-191d527209e8",
- "Service_Plan_Name": "STREAM_STORAGE",
- "Service_Plan_Id": "83bced11-77ce-4071-95bd-240133796768",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream Storage Add-On"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS (FREE)",
- "String_Id": "TEAMS_FREE",
- "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS (FREE)",
- "String_Id": "TEAMS_FREE",
- "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
- "Service_Plan_Name": "MCOFREE",
- "Service_Plan_Id": "617d9209-3b90-4879-96e6-838c42b2701d",
- "Service_Plans_Included_Friendly_Names": "MCO FREE FOR MICROSOFT TEAMS (FREE)"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS (FREE)",
- "String_Id": "TEAMS_FREE",
- "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
- "Service_Plan_Name": "TEAMS_FREE",
- "Service_Plan_Id": "4fa4026d-ce74-4962-a151-8e96d57ea8e4",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS (FREE)"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS (FREE)",
- "String_Id": "TEAMS_FREE",
- "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
- "Service_Plan_Name": "SHAREPOINTDESKLESS",
- "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT KIOSK"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS (FREE)",
- "String_Id": "TEAMS_FREE",
- "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
- "Service_Plan_Name": "TEAMS_FREE_SERVICE",
- "Service_Plan_Id": "bd6f2ac2-991a-49f9-b23c-18c96a02c228",
- "Service_Plans_Included_Friendly_Names": "TEAMS FREE SERVICE"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS (FREE)",
- "String_Id": "TEAMS_FREE",
- "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
- "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1",
- "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3",
- "Service_Plans_Included_Friendly_Names": "WHITEBOARD (FIRSTLINE)"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "CDS_O365_P1",
- "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25",
- "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P1"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNER"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT SEARCH"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "DESKLESS",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "STREAM_O365_E1",
- "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "MCO_TEAMS_IW",
- "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "MOBILE DEVICE MANAGEMENT FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "OFFICE MOBILE APPS FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1",
- "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813",
- "Service_Plans_Included_Friendly_Names": "POWER VIRTUAL AGENTS FOR OFFICE 365 P1"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "WHITEBOARD_PLAN1",
- "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
- "Service_Plans_Included_Friendly_Names": "WHITEBOARD (PLAN 1)"
- },
- {
- "Product_Display_Name": "MICROSOFT TEAMS EXPLORATORY",
- "String_Id": "TEAMS_EXPLORATORY",
- "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "YAMMER ENTERPRIS"
- },
- {
- "Product_Display_Name": "Microsoft Teams Rooms Standard",
- "String_Id": "MEETING_ROOM",
- "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
- },
- {
- "Product_Display_Name": "Microsoft Teams Rooms Standard",
- "String_Id": "MEETING_ROOM",
- "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
- },
- {
- "Product_Display_Name": "Microsoft Teams Rooms Standard",
- "String_Id": "MEETING_ROOM",
- "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Microsoft Teams Rooms Standard",
- "String_Id": "MEETING_ROOM",
- "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft Teams Rooms Standard",
- "String_Id": "MEETING_ROOM",
- "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Microsoft Teams Rooms Standard",
- "String_Id": "MEETING_ROOM",
- "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
- "Service_Plan_Name": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
- },
- {
- "Product_Display_Name": "Microsoft Teams Trial",
- "String_Id": "MS_TEAMS_IW",
- "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Teams Trial",
- "String_Id": "MS_TEAMS_IW",
- "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft Teams Trial",
- "String_Id": "MS_TEAMS_IW",
- "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
- "Service_Plan_Name": "MCO_TEAMS_IW",
- "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft Teams Trial",
- "String_Id": "MS_TEAMS_IW",
- "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft Teams Trial",
- "String_Id": "MS_TEAMS_IW",
- "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
- },
- {
- "Product_Display_Name": "Microsoft Teams Trial",
- "String_Id": "MS_TEAMS_IW",
- "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft Teams Trial",
- "String_Id": "MS_TEAMS_IW",
- "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft Teams Trial",
- "String_Id": "MS_TEAMS_IW",
- "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
- "Service_Plan_Name": "SHAREPOINTDESKLESS",
- "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
- "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
- },
- {
- "Product_Display_Name": "Microsoft Teams Trial",
- "String_Id": "MS_TEAMS_IW",
- "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Microsoft Teams Trial",
- "String_Id": "MS_TEAMS_IW",
- "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
- },
- {
- "Product_Display_Name": "Microsoft Threat Experts - Experts on Demand",
- "String_Id": "EXPERTS_ON_DEMAND",
- "GUID": "9fa2f157-c8e4-4351-a3f2-ffa506da1406",
- "Service_Plan_Name": "EXPERTS_ON_DEMAND",
- "Service_Plan_Id": "b83a66d4-f05f-414d-ac0f-ea1c5239c42b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Threat Experts - Experts on Demand"
- },
- {
- "Product_Display_Name": "Multi-Geo Capabilities in Office 365",
- "String_Id": "OFFICE365_MULTIGEO",
- "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607",
- "Service_Plan_Name": "EXCHANGEONLINE_MULTIGEO",
- "Service_Plan_Id": "897d51f1-2cfa-4848-9b30-469149f5e68e",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Multi-Geo"
- },
- {
- "Product_Display_Name": "Multi-Geo Capabilities in Office 365",
- "String_Id": "OFFICE365_MULTIGEO",
- "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607",
- "Service_Plan_Name": "SHAREPOINTONLINE_MULTIGEO",
- "Service_Plan_Id": "735c1d98-dd3f-4818-b4ed-c8052e18e62d",
- "Service_Plans_Included_Friendly_Names": "SharePoint Multi-Geo"
- },
- {
- "Product_Display_Name": "Multi-Geo Capabilities in Office 365",
- "String_Id": "OFFICE365_MULTIGEO",
- "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607",
- "Service_Plan_Name": "TEAMSMULTIGEO",
- "Service_Plan_Id": "41eda15d-6b52-453b-906f-bc4a5b25a26b",
- "Service_Plans_Included_Friendly_Names": "Teams Multi-Geo"
- },
- {
- "Product_Display_Name": "Teams Rooms Premium",
- "String_Id": "MTR_PREM",
- "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
- "Service_Plan_Name": "MMR_P1",
- "Service_Plan_Id": "bdaa59a3-74fd-4137-981a-31d4f84eb8a0",
- "Service_Plans_Included_Friendly_Names": "Meeting Room Managed Services"
- },
- {
- "Product_Display_Name": "Teams Rooms Premium",
- "String_Id": "MTR_PREM",
- "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
- },
- {
- "Product_Display_Name": "Teams Rooms Premium",
- "String_Id": "MTR_PREM",
- "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
- },
- {
- "Product_Display_Name": "Teams Rooms Premium",
- "String_Id": "MTR_PREM",
- "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
- "Service_Plan_Name": "INTUNE_A",
- "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
- },
- {
- "Product_Display_Name": "Teams Rooms Premium",
- "String_Id": "MTR_PREM",
- "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Teams Rooms Premium",
- "String_Id": "MTR_PREM",
- "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Teams Rooms Premium",
- "String_Id": "MTR_PREM",
- "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
- "Service_Plan_Name": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
- "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for faculty",
- "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
- "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
- "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
- "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A3 for students",
- "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
- "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Flow for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
- "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_3",
- "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for faculty",
- "String_Id": "ENTERPRISEPREMIUM_FACULTY",
- "GUID": "a4585165-0533-458a-97e3-c400570268c4",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "AAD_BASIC_EDU",
- "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
- "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "EducationAnalyticsP1",
- "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
- "Service_Plans_Included_Friendly_Names": "Education Analytics"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Flow for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
- "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "OFFICE_FORMS_PLAN_3",
- "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "SHAREPOINTWAC_EDU",
- "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
- "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
- "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
- "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
- },
- {
- "Product_Display_Name": "Office 365 A5 for students",
- "String_Id": "ENTERPRISEPREMIUM_STUDENT",
- "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
- "Service_Plan_Name": "YAMMER_EDU",
- "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
- "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
- },
- {
- "Product_Display_Name": "Office 365 Advanced Compliance",
- "String_Id": "EQUIVIO_ANALYTICS",
- "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
- },
- {
- "Product_Display_Name": "Office 365 Advanced Compliance",
- "String_Id": "EQUIVIO_ANALYTICS",
- "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
- "Service_Plan_Name": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
- },
- {
- "Product_Display_Name": "Office 365 Advanced Compliance",
- "String_Id": "EQUIVIO_ANALYTICS",
- "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
- "Service_Plan_Name": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
- },
- {
- "Product_Display_Name": "Office 365 Advanced Compliance",
- "String_Id": "EQUIVIO_ANALYTICS",
- "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
- },
- {
- "Product_Display_Name": "Office 365 Advanced Compliance",
- "String_Id": "EQUIVIO_ANALYTICS",
- "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
- "Service_Plan_Name": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
- },
- {
- "Product_Display_Name": "Office 365 Advanced Compliance",
- "String_Id": "EQUIVIO_ANALYTICS",
- "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
- "Service_Plan_Name": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
- },
- {
- "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1)",
- "String_Id": "ATP_ENTERPRISE",
- "GUID": "4ef96642-f096-40de-a3e9-d83fb2f90211",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Office 365 Extra File Storage for GCC",
- "String_Id": "SHAREPOINTSTORAGE_GOV",
- "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_FOUNDATION_GOV"
- },
- {
- "Product_Display_Name": "Office 365 Extra File Storage for GCC",
- "String_Id": "SHAREPOINTSTORAGE_GOV",
- "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d",
- "Service_Plan_Name": "SHAREPOINTSTORAGE_GOV",
- "Service_Plan_Id": "e5bb877f-6ac9-4461-9e43-ca581543ab16",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTORAGE_GOV"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "CDS_O365_P1",
- "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "STREAM_O365_E1",
- "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E1 SKU"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "MCO_TEAMS_IW",
- "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the web"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1",
- "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P1"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "SHAREPOINTDESKLESS",
- "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
- "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "WHITEBOARD_PLAN1",
- "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
- },
- {
- "Product_Display_Name": "Microsoft Teams Commercial Cloud",
- "String_Id": "TEAMS_COMMERCIAL_TRIAL",
- "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
- },
- {
- "Product_Display_Name": "Office 365 Cloud App Security",
- "String_Id": "ADALLOM_O365",
- "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Office 365 Cloud App Security",
- "String_Id": "ADALLOM_O365",
- "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Office 365 Extra File Storage",
- "String_Id": "SHAREPOINTSTORAGE",
- "GUID": "99049c9c-6011-4908-bf17-15f496e6519d",
- "Service_Plan_Name": "SHAREPOINTSTORAGE",
- "Service_Plan_Id": "be5a7ed5-c598-4fcd-a061-5e6724c68a58",
- "Service_Plans_Included_Friendly_Names": "Office 365 Extra File Storage"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_1"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNER"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "STREAM_O365_E1",
- "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "OFFICE 365 E1",
- "String_Id": "STANDARDPACK",
- "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE "
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "BPOS_S_TODO_1",
- "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
- "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_1"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD",
- "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "FLOW_O365_P1",
- "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "POWERAPPS_O365_P1",
- "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "STREAM_O365_E1",
- "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "OFFICE 365 E2",
- "String_Id": "STANDARDWOFFPACK",
- "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "DYN365_CDS_O365_P2",
- "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "CDS_O365_P2",
- "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "FORMS_PLAN_E3",
- "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "KAIZALA_O365_P3",
- "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the web"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
- "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "PROJECT_O365_P2",
- "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "WHITEBOARD_PLAN2",
- "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E3",
- "String_Id": "ENTERPRISEPACK",
- "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_3"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "FORMS_PLAN_E5",
- "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E5)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "SHAREPOINT_S_DEVELOPER",
- "Service_Plan_Id": "a361d6e2-509e-4e25-a8ad-950060064ef4",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT FOR DEVELOPER"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "SHAREPOINTWAC_DEVELOPER",
- "Service_Plan_Id": "527f7cdd-0e86-4c47-b879-f5fd357a3ac6",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE FOR DEVELOPER"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E5 SKU"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "OFFICE 365 E3 DEVELOPER",
- "String_Id": "DEVELOPERPACK",
- "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_DOD",
- "String_Id": "ENTERPRISEPACK_USGOV_DOD",
- "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_DOD",
- "String_Id": "ENTERPRISEPACK_USGOV_DOD",
- "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_DOD",
- "String_Id": "ENTERPRISEPACK_USGOV_DOD",
- "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_DOD",
- "String_Id": "ENTERPRISEPACK_USGOV_DOD",
- "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
- "Service_Plan_Name": "TEAMS_AR_DOD",
- "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_DOD",
- "String_Id": "ENTERPRISEPACK_USGOV_DOD",
- "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_DOD",
- "String_Id": "ENTERPRISEPACK_USGOV_DOD",
- "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office Online"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_DOD",
- "String_Id": "ENTERPRISEPACK_USGOV_DOD",
- "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_DOD",
- "String_Id": "ENTERPRISEPACK_USGOV_DOD",
- "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
- "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
- "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
- "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
- "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
- "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
- "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
- "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
- "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
- "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
- "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
- "Service_Plan_Name": "TEAMS_AR_GCCHIGH",
- "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
- "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
- "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
- "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
- "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office Online"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
- "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
- "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
- "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
- "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "BPOS_S_TODO_2",
- "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
- "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_2"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "FLOW_O365_P2",
- "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "FORMS_PLAN_E3",
- "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E3)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "MCOVOICECONF",
- "Service_Plan_Id": "27216c54-caf8-4d0d-97e2-517afb5c08f6",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 3)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "POWERAPPS_O365_P2",
- "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "STREAM_O365_E3",
- "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E3 SKU"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "OFFICE 365 E4",
- "String_Id": "ENTERPRISEWITHSCAL",
- "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "DYN365_CDS_O365_P3",
- "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "CDS_O365_P3",
- "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P3"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "MIP_S_Exchange",
- "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
- "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX",
- "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
- "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "Information Barriers"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Premium"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics – Standard"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Premium"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 – Standard"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "MYANALYTICS_P2",
- "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
- "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "MCOMEETADV",
- "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "DATA_INVESTIGATIONS",
- "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "ATP_ENTERPRISE",
- "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "EXCEL_PREMIUM",
- "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
- "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "FORMS_PLAN_E5",
- "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "KAIZALA_STANDALONE",
- "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "PAM_ENTERPRISE",
- "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
- "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the web"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
- "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P3"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "PROJECT_O365_P3",
- "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
- "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
- "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "WHITEBOARD_PLAN3",
- "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
- },
- {
- "Product_Display_Name": "Office 365 E5",
- "String_Id": "ENTERPRISEPREMIUM",
- "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 CLOUD APP SECURITY"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "POWER BI PRO"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "BPOS_S_TODO_3",
- "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
- "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_3"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS",
- "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 ADVANCED EDISCOVERY"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "EXCHANGE_ANALYTICS",
- "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE_ANALYTICS"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
- "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "FLOW_O365_P3",
- "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
- "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "FORMS_PLAN_E5",
- "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E5)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
- "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
- "Service_Plans_Included_Friendly_Names": "LOCKBOX_ENTERPRISE"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "MCOEV",
- "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
- "Service_Plans_Included_Friendly_Names": "PHONE SYSTEM"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "POWERAPPS_O365_P3",
- "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "RMS_S_ENTERPRISE",
- "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "STREAM_O365_E5",
- "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E5 SKU"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "TEAMS1"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "THREAT_INTELLIGENCE",
- "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 ADVANCED THREAT PROTECTION (PLAN 2)"
- },
- {
- "Product_Display_Name": "OFFICE 365 E5 WITHOUT AUDIO CONFERENCING",
- "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
- "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "DYN365_CDS_O365_F1",
- "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "CDS_O365_F1",
- "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "EXCHANGE_S_DESKLESS",
- "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
- "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "RMS_S_BASIC",
- "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "FORMS_PLAN_K",
- "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "KAIZALA_O365_P1",
- "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278",
- "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 1"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
- "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "MICROSOFT_SEARCH",
- "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
- "Service_Plans_Included_Friendly_Names": "Microsoft Search"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "Deskless",
- "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
- "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "STREAM_O365_K",
- "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9",
- "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "TEAMS1",
- "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
- "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
- "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
- "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "POWERAPPS_O365_S1",
- "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a",
- "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "FLOW_O365_S1",
- "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1",
- "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a",
- "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 F1"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "PROJECT_O365_F3",
- "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec",
- "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "SHAREPOINTDESKLESS",
- "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
- "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "MCOIMP",
- "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
- "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE",
- "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5",
- "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1",
- "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3",
- "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)"
- },
- {
- "Product_Display_Name": "OFFICE 365 F3",
- "String_Id": "DESKLESSPACK",
- "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
- "Service_Plan_Name": "YAMMER_ENTERPRISE",
- "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
- "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
- "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC",
- "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc",
- "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE - O365 P2 GCC"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "CDS_O365_P2_GCC",
- "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41",
- "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P2 GCC"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE PLAN 2G"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "FORMS_GOV_E3",
- "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc",
- "Service_Plans_Included_Friendly_Names": "FORMS FOR GOVERNMENT (PLAN E3)"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – PREMIUM"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS – STANDARD"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION FOR OFFICE 365 – STANDARD"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "MYANALYTICS_P2_GOV",
- "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0",
- "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV",
- "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 APPS FOR ENTERPRISE G"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT BOOKINGS"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "STREAM_O365_E3_GOV",
- "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 FOR GOVERNMENT (E3)"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "TEAMS_GOV",
- "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "MOBILE DEVICE MANAGEMENT FOR OFFICE 365"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV",
- "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 PLANNER FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "SHAREPOINTWAC_GOV",
- "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
- "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB (GOVERNMENT)"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "POWERAPPS_O365_P2_GOV",
- "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3",
- "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365 FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "FLOW_O365_P2_GOV",
- "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b",
- "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365 FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
- "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 2G"
- },
- {
- "Product_Display_Name": "OFFICE 365 G3 GCC",
- "String_Id": "ENTERPRISEPACK_GOV",
- "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
- "Service_Plan_Name": "MCOSTANDARD_GOV",
- "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
- "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC",
- "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39",
- "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_P3_GCC"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "CDS_O365_P3_GCC",
- "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10",
- "Service_Plans_Included_Friendly_Names": "CDS_O365_P3_GCC"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV",
- "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526",
- "Service_Plans_Included_Friendly_Names": "LOCKBOX_ENTERPRISE_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV",
- "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_ENTERPRISE_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "FORMS_GOV_E5",
- "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c",
- "Service_Plans_Included_Friendly_Names": "FORMS_GOV_E5"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "INFORMATION_BARRIERS",
- "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
- "Service_Plans_Included_Friendly_Names": "INFORMATION_BARRIERS"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "Content_Explorer",
- "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
- "Service_Plans_Included_Friendly_Names": "Content_Explorer"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "ContentExplorer_Standard",
- "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
- "Service_Plans_Included_Friendly_Names": "ContentExplorer_Standard"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "MIP_S_CLP2",
- "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
- "Service_Plans_Included_Friendly_Names": "MIP_S_CLP2"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "MIP_S_CLP1",
- "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
- "Service_Plans_Included_Friendly_Names": "MIP_S_CLP1"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
- "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT_COMMUNICATION_COMPLIANCE"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "M365_ADVANCED_AUDITING",
- "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
- "Service_Plans_Included_Friendly_Names": "M365_ADVANCED_AUDITING"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV",
- "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af",
- "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "MCOMEETADV_GOV",
- "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1",
- "Service_Plans_Included_Friendly_Names": "MCOMEETADV_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "MTP",
- "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
- "Service_Plans_Included_Friendly_Names": "MTP"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "MCOEV_GOV",
- "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22",
- "Service_Plans_Included_Friendly_Names": "MCOEV_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "MICROSOFTBOOKINGS",
- "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
- "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "COMMUNICATIONS_DLP",
- "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
- "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS_DLP"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "CUSTOMER_KEY",
- "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
- "Service_Plans_Included_Friendly_Names": "CUSTOMER_KEY"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "ATP_ENTERPRISE_GOV",
- "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516",
- "Service_Plans_Included_Friendly_Names": "ATP_ENTERPRISE_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV",
- "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6",
- "Service_Plans_Included_Friendly_Names": "THREAT_INTELLIGENCE_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "INFO_GOVERNANCE",
- "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
- "Service_Plans_Included_Friendly_Names": "INFO_GOVERNANCE"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV",
- "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE_ANALYTICS_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "RECORDS_MANAGEMENT",
- "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
- "Service_Plans_Included_Friendly_Names": "RECORDS_MANAGEMENT"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "STREAM_O365_E5_GOV",
- "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547",
- "Service_Plans_Included_Friendly_Names": "STREAM_O365_E5_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "TEAMS_GOV",
- "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
- "Service_Plans_Included_Friendly_Names": "TEAMS_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "INTUNE_O365",
- "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
- "Service_Plans_Included_Friendly_Names": "INTUNE_O365"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV",
- "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1",
- "Service_Plans_Included_Friendly_Names": "EQUIVIO_ANALYTICS_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "ADALLOM_S_O365",
- "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
- "Service_Plans_Included_Friendly_Names": "ADALLOM_S_O365"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV",
- "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
- "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "SHAREPOINTWAC_GOV",
- "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTWAC_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "POWERAPPS_O365_P3_GOV",
- "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e",
- "Service_Plans_Included_Friendly_Names": "POWERAPPS_O365_P3_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "FLOW_O365_P3_GOV",
- "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246",
- "Service_Plans_Included_Friendly_Names": "FLOW_O365_P3_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "BI_AZURE_P_2_GOV",
- "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76",
- "Service_Plans_Included_Friendly_Names": "BI_AZURE_P_2_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "PREMIUM_ENCRYPTION",
- "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
- "Service_Plans_Included_Friendly_Names": "PREMIUM_ENCRYPTION"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
- "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTENTERPRISE_GOV"
- },
- {
- "Product_Display_Name": "Office 365 G5 GCC",
- "String_Id": "ENTERPRISEPREMIUM_GOV",
- "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
- "Service_Plan_Name": "MCOSTANDARD_GOV",
- "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
- "Service_Plans_Included_Friendly_Names": "MCOSTANDARD_GOV"
- },
- {
- "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS",
- "String_Id": "MIDSIZEPACK",
- "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
- "Service_Plan_Name": "EXCHANGE_S_STANDARD_MIDMARKET",
- "Service_Plan_Id": "fc52cc4b-ed7d-472d-bbe7-b081c23ecc56",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE PLAN "
- },
- {
- "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS",
- "String_Id": "MIDSIZEPACK",
- "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
- "Service_Plan_Name": "MCOSTANDARD_MIDMARKET",
- "Service_Plan_Id": "b2669e95-76ef-4e7e-a367-002f60a39f3e",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR MIDSIZ"
- },
- {
- "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS",
- "String_Id": "MIDSIZEPACK",
- "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
- "Service_Plan_Name": "OFFICESUBSCRIPTION",
- "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
- "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION"
- },
- {
- "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS",
- "String_Id": "MIDSIZEPACK",
- "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_MIDMARKET",
- "Service_Plan_Id": "6b5b6a67-fc72-4a1f-a2b5-beecf05de761",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 1"
- },
- {
- "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS",
- "String_Id": "MIDSIZEPACK",
- "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS",
- "String_Id": "MIDSIZEPACK",
- "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "OFFICE 365 MIDSIZE BUSINESS",
- "String_Id": "MIDSIZEPACK",
- "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
- "Service_Plan_Name": "YAMMER_MIDSIZE",
- "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb",
- "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE"
- },
- {
- "Product_Display_Name": "OFFICE 365 SMALL BUSINESS",
- "String_Id": "LITEPACK",
- "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b",
- "Service_Plan_Name": "EXCHANGE_L_STANDARD",
- "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)"
- },
- {
- "Product_Display_Name": "OFFICE 365 SMALL BUSINESS",
- "String_Id": "LITEPACK",
- "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b",
- "Service_Plan_Name": "MCOLITE",
- "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)"
- },
- {
- "Product_Display_Name": "OFFICE 365 SMALL BUSINESS",
- "String_Id": "LITEPACK",
- "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b",
- "Service_Plan_Name": "SHAREPOINTLITE",
- "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE"
- },
- {
- "Product_Display_Name": "OFFICE 365 SMALL BUSINESS",
- "String_Id": "LITEPACK",
- "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM",
- "String_Id": "LITEPACK_P2",
- "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b",
- "Service_Plan_Name": "EXCHANGE_L_STANDARD",
- "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)"
- },
- {
- "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM",
- "String_Id": "LITEPACK_P2",
- "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b",
- "Service_Plan_Name": "MCOLITE",
- "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)"
- },
- {
- "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM",
- "String_Id": "LITEPACK_P2",
- "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b",
- "Service_Plan_Name": "OFFICE_PRO_PLUS_SUBSCRIPTION_SMBIZ",
- "Service_Plan_Id": "8ca59559-e2ca-470b-b7dd-afd8c0dee963",
- "Service_Plans_Included_Friendly_Names": "OFFICE 365 SMALL BUSINESS SUBSCRIPTION"
- },
- {
- "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM",
- "String_Id": "LITEPACK_P2",
- "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b",
- "Service_Plan_Name": "SHAREPOINTLITE",
- "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE"
- },
- {
- "Product_Display_Name": "OFFICE 365 SMALL BUSINESS PREMIUM",
- "String_Id": "LITEPACK_P2",
- "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)",
- "String_Id": "WACONEDRIVESTANDARD",
- "GUID": "e6778190-713e-4e4f-9119-8b8238de25df",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)",
- "String_Id": "WACONEDRIVESTANDARD",
- "GUID": "e6778190-713e-4e4f-9119-8b8238de25df",
- "Service_Plan_Name": "ONEDRIVESTANDARD",
- "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30",
- "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD"
- },
- {
- "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)",
- "String_Id": "WACONEDRIVESTANDARD",
- "GUID": "e6778190-713e-4e4f-9119-8b8238de25df",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 1)",
- "String_Id": "WACONEDRIVESTANDARD",
- "GUID": "e6778190-713e-4e4f-9119-8b8238de25df",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 2)",
- "String_Id": "WACONEDRIVEENTERPRISE",
- "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96",
- "Service_Plan_Name": "ONEDRIVEENTERPRISE",
- "Service_Plan_Id": "afcafa6a-d966-4462-918c-ec0b4e0fe642",
- "Service_Plans_Included_Friendly_Names": "ONEDRIVEENTERPRISE"
- },
- {
- "Product_Display_Name": "ONEDRIVE FOR BUSINESS (PLAN 2)",
- "String_Id": "WACONEDRIVEENTERPRISE",
- "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS",
- "String_Id": "POWERAPPS_INDIVIDUAL_USER",
- "GUID": "87bbbc60-4754-4998-8c88-227dca264858",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS",
- "String_Id": "POWERAPPS_INDIVIDUAL_USER",
- "GUID": "87bbbc60-4754-4998-8c88-227dca264858",
- "Service_Plan_Name": "POWERFLOWSFREE",
- "Service_Plan_Id": "0b4346bb-8dc3-4079-9dfc-513696f56039",
- "Service_Plans_Included_Friendly_Names": "LOGIC FLOWS"
- },
- {
- "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS",
- "String_Id": "POWERAPPS_INDIVIDUAL_USER",
- "GUID": "87bbbc60-4754-4998-8c88-227dca264858",
- "Service_Plan_Name": "POWERVIDEOSFREE",
- "Service_Plan_Id": "2c4ec2dc-c62d-4167-a966-52a3e6374015",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER VIDEOS BASIC"
- },
- {
- "Product_Display_Name": "POWERAPPS AND LOGIC FLOWS",
- "String_Id": "POWERAPPS_INDIVIDUAL_USER",
- "GUID": "87bbbc60-4754-4998-8c88-227dca264858",
- "Service_Plan_Name": "POWERAPPSFREE",
- "Service_Plan_Id": "e61a2945-1d4e-4523-b6e7-30ba39d20f32",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT POWERAPPS"
- },
- {
- "Product_Display_Name": "PowerApps per app baseline access",
- "String_Id": "POWERAPPS_PER_APP_IW",
- "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2",
- "Service_Plan_Name": "CDS_PER_APP_IWTRIAL",
- "Service_Plan_Id": "94a669d1-84d5-4e54-8462-53b0ae2c8be5",
- "Service_Plans_Included_Friendly_Names": "CDS Per app baseline access"
- },
- {
- "Product_Display_Name": "PowerApps per app baseline access",
- "String_Id": "POWERAPPS_PER_APP_IW",
- "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2",
- "Service_Plan_Name": "Flow_Per_APP_IWTRIAL",
- "Service_Plan_Id": "dd14867e-8d31-4779-a595-304405f5ad39",
- "Service_Plans_Included_Friendly_Names": "Flow per app baseline access"
- },
- {
- "Product_Display_Name": "PowerApps per app baseline access",
- "String_Id": "POWERAPPS_PER_APP_IW",
- "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2",
- "Service_Plan_Name": "POWERAPPS_PER_APP_IWTRIAL",
- "Service_Plan_Id": "35122886-cef5-44a3-ab36-97134eabd9ba",
- "Service_Plans_Included_Friendly_Names": "PowerApps per app baseline access"
- },
- {
- "Product_Display_Name": "Power Apps per app plan",
- "String_Id": "POWERAPPS_PER_APP",
- "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206",
- "Service_Plan_Name": "CDS_PER_APP",
- "Service_Plan_Id": "9f2f00ad-21ae-4ceb-994b-d8bc7be90999",
- "Service_Plans_Included_Friendly_Names": "CDS PowerApps per app plan"
- },
- {
- "Product_Display_Name": "Power Apps per app plan",
- "String_Id": "POWERAPPS_PER_APP",
- "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power Apps per app plan",
- "String_Id": "POWERAPPS_PER_APP",
- "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206",
- "Service_Plan_Name": "POWERAPPS_PER_APP",
- "Service_Plan_Id": "b4f657ff-d83e-4053-909d-baa2b595ec97",
- "Service_Plans_Included_Friendly_Names": "Power Apps per App Plan"
- },
- {
- "Product_Display_Name": "Power Apps per app plan",
- "String_Id": "POWERAPPS_PER_APP",
- "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206",
- "Service_Plan_Name": "Flow_Per_APP",
- "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan"
- },
- {
- "Product_Display_Name": "Power Apps per user plan",
- "String_Id": "POWERAPPS_PER_USER",
- "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579",
- "Service_Plan_Name": "DYN365_CDS_P2",
- "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - P2"
- },
- {
- "Product_Display_Name": "Power Apps per user plan",
- "String_Id": "POWERAPPS_PER_USER",
- "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power Apps per user plan",
- "String_Id": "POWERAPPS_PER_USER",
- "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579",
- "Service_Plan_Name": "POWERAPPS_PER_USER",
- "Service_Plan_Id": "ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86",
- "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan"
- },
- {
- "Product_Display_Name": "Power Apps per user plan",
- "String_Id": "POWERAPPS_PER_USER",
- "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579",
- "Service_Plan_Name": "Flow_PowerApps_PerUser",
- "Service_Plan_Id": "dc789ed8-0170-4b65-a415-eb77d5bb350a",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan"
- },
- {
- "Product_Display_Name": "Power Automate per flow plan",
- "String_Id": "FLOW_BUSINESS_PROCESS",
- "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b",
- "Service_Plan_Name": "CDS_Flow_Business_Process",
- "Service_Plan_Id": "c84e52ae-1906-4947-ac4d-6fb3e5bf7c2e",
- "Service_Plans_Included_Friendly_Names": "Common data service for Flow per business process plan"
- },
- {
- "Product_Display_Name": "Power Automate per flow plan",
- "String_Id": "FLOW_BUSINESS_PROCESS",
- "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power Automate per flow plan",
- "String_Id": "FLOW_BUSINESS_PROCESS",
- "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b",
- "Service_Plan_Name": "FLOW_BUSINESS_PROCESS",
- "Service_Plan_Id": "7e017b61-a6e0-4bdc-861a-932846591f6e",
- "Service_Plans_Included_Friendly_Names": "Flow per business process plan"
- },
- {
- "Product_Display_Name": "Power Automate per user plan",
- "String_Id": "FLOW_PER_USER",
- "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d",
- "Service_Plan_Name": "DYN365_CDS_P2",
- "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - P2"
- },
- {
- "Product_Display_Name": "Power Automate per user plan",
- "String_Id": "FLOW_PER_USER",
- "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power Automate per user plan",
- "String_Id": "FLOW_PER_USER",
- "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d",
- "Service_Plan_Name": "FLOW_PER_USER",
- "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0",
- "Service_Plans_Included_Friendly_Names": "Flow per user plan"
- },
- {
- "Product_Display_Name": "Power Automate per user plan dept",
- "String_Id": "FLOW_PER_USER_DEPT",
- "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4",
- "Service_Plan_Name": "DYN365_CDS_P2",
- "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2",
- "Service_Plans_Included_Friendly_Names": "Common Data Service - P2"
- },
- {
- "Product_Display_Name": "Power Automate per user plan dept",
- "String_Id": "FLOW_PER_USER_DEPT",
- "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power Automate per user plan dept",
- "String_Id": "FLOW_PER_USER_DEPT",
- "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4",
- "Service_Plan_Name": "FLOW_PER_USER",
- "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0",
- "Service_Plans_Included_Friendly_Names": "Flow per user plan"
- },
- {
- "Product_Display_Name": "Power Automate per user with attended RPA plan",
- "String_Id": "POWERAUTOMATE_ATTENDED_RPA",
- "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9",
- "Service_Plan_Name": "CDS_ATTENDED_RPA",
- "Service_Plan_Id": "3da2fd4c-1bee-4b61-a17f-94c31e5cab93",
- "Service_Plans_Included_Friendly_Names": "Common Data Service Attended RPA"
- },
- {
- "Product_Display_Name": "Power Automate per user with attended RPA plan",
- "String_Id": "POWERAUTOMATE_ATTENDED_RPA",
- "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power Automate per user with attended RPA plan",
- "String_Id": "POWERAUTOMATE_ATTENDED_RPA",
- "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9",
- "Service_Plan_Name": "POWER_AUTOMATE_ATTENDED_RPA",
- "Service_Plan_Id": "375cd0ad-c407-49fd-866a-0bff4f8a9a4d",
- "Service_Plans_Included_Friendly_Names": "Power Automate RPA Attended"
- },
- {
- "Product_Display_Name": "Power Automate unattended RPA add-on",
- "String_Id": "POWERAUTOMATE_UNATTENDED_RPA",
- "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2",
- "Service_Plan_Name": "CDS_UNATTENDED_RPA",
- "Service_Plan_Id": "b475952f-128a-4a44-b82a-0b98a45ca7fb",
- "Service_Plans_Included_Friendly_Names": "Common Data Service Unattended RPA"
- },
- {
- "Product_Display_Name": "Power Automate unattended RPA add-on",
- "String_Id": "POWERAUTOMATE_UNATTENDED_RPA",
- "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power Automate unattended RPA add-on",
- "String_Id": "POWERAUTOMATE_UNATTENDED_RPA",
- "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2",
- "Service_Plan_Name": "POWER_AUTOMATE_UNATTENDED_RPA",
- "Service_Plan_Id": "0d373a98-a27a-426f-8993-f9a425ae99c5",
- "Service_Plans_Included_Friendly_Names": "Power Automate Unattended RPA add-on"
- },
- {
- "Product_Display_Name": "Power BI",
- "String_Id": "POWER_BI_INDIVIDUAL_USER",
- "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power BI",
- "String_Id": "POWER_BI_INDIVIDUAL_USER",
- "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a",
- "Service_Plan_Name": "SQL_IS_SSIM",
- "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd",
- "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Information Services Plan 1"
- },
- {
- "Product_Display_Name": "Power BI",
- "String_Id": "POWER_BI_INDIVIDUAL_USER",
- "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a",
- "Service_Plan_Name": "BI_AZURE_P1",
- "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d",
- "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Reporting and Analytics Plan 1"
- },
- {
- "Product_Display_Name": "Power BI (free)",
- "String_Id": "POWER_BI_STANDARD",
- "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power BI (free)",
- "String_Id": "POWER_BI_STANDARD",
- "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235",
- "Service_Plan_Name": "BI_AZURE_P0",
- "Service_Plan_Id": "2049e525-b859-401b-b2a0-e0a31c4b1fe4",
- "Service_Plans_Included_Friendly_Names": "Power BI (free)"
- },
- {
- "Product_Display_Name": "POWER BI FOR OFFICE 365 ADD-ON",
- "String_Id": "POWER_BI_ADDON",
- "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402",
- "Service_Plan_Name": "BI_AZURE_P1",
- "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI REPORTING AND ANALYTICS PLAN 1"
- },
- {
- "Product_Display_Name": "POWER BI FOR OFFICE 365 ADD-ON",
- "String_Id": "POWER_BI_ADDON",
- "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402",
- "Service_Plan_Name": "SQL_IS_SSIM",
- "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI INFORMATION SERVICES PLAN "
- },
- {
- "Product_Display_Name": "Power BI Premium P1",
- "String_Id": "PBI_PREMIUM_P1_ADDON",
- "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power BI Premium P1",
- "String_Id": "PBI_PREMIUM_P1_ADDON",
- "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945",
- "Service_Plan_Name": "PBI_PREMIUM_P1_ADDON",
- "Service_Plan_Id": "9da49a6d-707a-48a1-b44a-53dcde5267f8",
- "Service_Plans_Included_Friendly_Names": "Power BI Premium P"
- },
- {
- "Product_Display_Name": "Power BI Premium Per User",
- "String_Id": "PBI_PREMIUM_PER_USER",
- "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power BI Premium Per User",
- "String_Id": "PBI_PREMIUM_PER_USER",
- "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711",
- "Service_Plan_Name": "BI_AZURE_P3",
- "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c",
- "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User"
- },
- {
- "Product_Display_Name": "Power BI Premium Per User",
- "String_Id": "PBI_PREMIUM_PER_USER",
- "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
- },
- {
- "Product_Display_Name": "Power BI Premium Per User Add-On",
- "String_Id": "PBI_PREMIUM_PER_USER_ADDON",
- "GUID": "de376a03-6e5b-42ec-855f-093fb50b8ca5",
- "Service_Plan_Name": "BI_AZURE_P3",
- "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c",
- "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User"
- },
- {
- "Product_Display_Name": "Power BI Premium Per User Dept",
- "String_Id": "PBI_PREMIUM_PER_USER_DEPT",
- "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power BI Premium Per User Dept",
- "String_Id": "PBI_PREMIUM_PER_USER_DEPT",
- "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4",
- "Service_Plan_Name": "BI_AZURE_P3",
- "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c",
- "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User"
- },
- {
- "Product_Display_Name": "Power BI Premium Per User Dept",
- "String_Id": "PBI_PREMIUM_PER_USER_DEPT",
- "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
- },
- {
- "Product_Display_Name": "Power BI Pro",
- "String_Id": "POWER_BI_PRO",
- "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power BI Pro",
- "String_Id": "POWER_BI_PRO",
- "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
- },
- {
- "Product_Display_Name": "Power BI Pro CE",
- "String_Id": "POWER_BI_PRO_CE",
- "GUID": "420af87e-8177-4146-a780-3786adaffbca",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power BI Pro CE",
- "String_Id": "POWER_BI_PRO_CE",
- "GUID": "420af87e-8177-4146-a780-3786adaffbca",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
- },
- {
- "Product_Display_Name": "Power BI Pro Dept",
- "String_Id": "POWER_BI_PRO_DEPT",
- "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Power BI Pro Dept",
- "String_Id": "POWER_BI_PRO_DEPT",
- "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882",
- "Service_Plan_Name": "BI_AZURE_P2",
- "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
- "Service_Plans_Included_Friendly_Names": "Power BI Pro"
- },
- {
- "Product_Display_Name": "Power Virtual Agent",
- "String_Id": "VIRTUAL_AGENT_BASE",
- "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f",
- "Service_Plan_Name": "CDS_VIRTUAL_AGENT_BASE",
- "Service_Plan_Id": "0a0a23fa-fea1-4195-bb89-b4789cb12f7f",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Virtual Agent Base"
- },
- {
- "Product_Display_Name": "Power Virtual Agent",
- "String_Id": "VIRTUAL_AGENT_BASE",
- "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f",
- "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_BASE",
- "Service_Plan_Id": "4b81a949-69a1-4409-ad34-9791a6ec88aa",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent"
- },
- {
- "Product_Display_Name": "Power Virtual Agent",
- "String_Id": "VIRTUAL_AGENT_BASE",
- "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f",
- "Service_Plan_Name": "VIRTUAL_AGENT_BASE",
- "Service_Plan_Id": "f6934f16-83d3-4f3b-ad27-c6e9c187b260",
- "Service_Plans_Included_Friendly_Names": "Virtual Agent Base"
- },
- {
- "Product_Display_Name": "Power Virtual Agents Viral Trial",
- "String_Id": "CCIBOTS_PRIVPREV_VIRAL",
- "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80",
- "Service_Plan_Name": "DYN365_CDS_CCI_BOTS",
- "Service_Plan_Id": "cf7034ed-348f-42eb-8bbd-dddeea43ee81",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for CCI Bots"
- },
- {
- "Product_Display_Name": "Power Virtual Agents Viral Trial",
- "String_Id": "CCIBOTS_PRIVPREV_VIRAL",
- "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80",
- "Service_Plan_Name": "CCIBOTS_PRIVPREV_VIRAL",
- "Service_Plan_Id": "ce312d15-8fdf-44c0-9974-a25a177125ee",
- "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Virtual Agents Viral"
- },
- {
- "Product_Display_Name": "Power Virtual Agents Viral Trial",
- "String_Id": "CCIBOTS_PRIVPREV_VIRAL",
- "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80",
- "Service_Plan_Name": "FLOW_CCI_BOTS",
- "Service_Plan_Id": "5d798708-6473-48ad-9776-3acc301c40af",
- "Service_Plans_Included_Friendly_Names": "Flow for CCI Bots"
- },
- {
- "Product_Display_Name": "PROJECT FOR OFFICE 365",
- "String_Id": "PROJECTCLIENT",
- "GUID": "a10d5e58-74da-4312-95c8-76be4e5b75a0",
- "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
- "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
- "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT"
- },
- {
- "Product_Display_Name": "Project Online Essentials",
- "String_Id": "PROJECTESSENTIALS",
- "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Project Online Essentials",
- "String_Id": "PROJECTESSENTIALS",
- "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
- },
- {
- "Product_Display_Name": "Project Online Essentials",
- "String_Id": "PROJECTESSENTIALS",
- "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the web"
- },
- {
- "Product_Display_Name": "Project Online Essentials",
- "String_Id": "PROJECTESSENTIALS",
- "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
- "Service_Plan_Name": "PROJECT_ESSENTIALS",
- "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
- "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
- },
- {
- "Product_Display_Name": "Project Online Essentials",
- "String_Id": "PROJECTESSENTIALS",
- "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
- },
- {
- "Product_Display_Name": "Project Online Essentials",
- "String_Id": "PROJECTESSENTIALS",
- "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "Sway"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE PREMIUM",
- "String_Id": "PROJECTPREMIUM",
- "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a",
- "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
- "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
- "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE PREMIUM",
- "String_Id": "PROJECTPREMIUM",
- "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a",
- "Service_Plan_Name": "SHAREPOINT_PROJECT",
- "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE PREMIUM",
- "String_Id": "PROJECTPREMIUM",
- "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE PREMIUM",
- "String_Id": "PROJECTPREMIUM",
- "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT",
- "String_Id": "PROJECTONLINE_PLAN_1",
- "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT",
- "String_Id": "PROJECTONLINE_PLAN_1",
- "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3",
- "Service_Plan_Name": "SHAREPOINT_PROJECT",
- "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT",
- "String_Id": "PROJECTONLINE_PLAN_1",
- "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT",
- "String_Id": "PROJECTONLINE_PLAN_1",
- "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE PREMIUM WITHOUT PROJECT CLIENT",
- "String_Id": "PROJECTONLINE_PLAN_1",
- "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365",
- "String_Id": "PROJECTONLINE_PLAN_2",
- "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
- "Service_Plan_Name": "FORMS_PLAN_E1",
- "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
- "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365",
- "String_Id": "PROJECTONLINE_PLAN_2",
- "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
- "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
- "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
- "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365",
- "String_Id": "PROJECTONLINE_PLAN_2",
- "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
- "Service_Plan_Name": "SHAREPOINT_PROJECT",
- "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365",
- "String_Id": "PROJECTONLINE_PLAN_2",
- "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365",
- "String_Id": "PROJECTONLINE_PLAN_2",
- "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
- },
- {
- "Product_Display_Name": "PROJECT ONLINE WITH PROJECT FOR OFFICE 365",
- "String_Id": "PROJECTONLINE_PLAN_2",
- "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
- "Service_Plan_Name": "SWAY",
- "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
- "Service_Plans_Included_Friendly_Names": "SWAY"
- },
- {
- "Product_Display_Name": "PROJECT PLAN 1",
- "String_Id": "PROJECT_P1",
- "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
- "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1",
- "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e",
- "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR PROJECT P1"
- },
- {
- "Product_Display_Name": "PROJECT PLAN 1",
- "String_Id": "PROJECT_P1",
- "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "PROJECT PLAN 1",
- "String_Id": "PROJECT_P1",
- "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
- "Service_Plan_Name": "Power_Automate_For_Project_P1",
- "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1",
- "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR PROJECT P1"
- },
- {
- "Product_Display_Name": "PROJECT PLAN 1",
- "String_Id": "PROJECT_P1",
- "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
- "Service_Plan_Name": "PROJECT_ESSENTIALS",
- "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
- "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
- },
- {
- "Product_Display_Name": "PROJECT PLAN 1",
- "String_Id": "PROJECT_P1",
- "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
- "Service_Plan_Name": "PROJECT_P1",
- "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9",
- "Service_Plans_Included_Friendly_Names": "PROJECT P1"
- },
- {
- "Product_Display_Name": "PROJECT PLAN 1",
- "String_Id": "PROJECT_P1",
- "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT"
- },
- {
- "Product_Display_Name": "Project Plan 1 (for Department)",
- "String_Id": "PROJECT_PLAN1_DEPT",
- "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
- "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1",
- "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Project P1"
- },
- {
- "Product_Display_Name": "Project Plan 1 (for Department)",
- "String_Id": "PROJECT_PLAN1_DEPT",
- "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Project Plan 1 (for Department)",
- "String_Id": "PROJECT_PLAN1_DEPT",
- "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
- "Service_Plan_Name": "Power_Automate_For_Project_P1",
- "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1",
- "Service_Plans_Included_Friendly_Names": "Power Automate for Project P1"
- },
- {
- "Product_Display_Name": "Project Plan 1 (for Department)",
- "String_Id": "PROJECT_PLAN1_DEPT",
- "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
- "Service_Plan_Name": "PROJECT_ESSENTIALS",
- "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
- "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
- },
- {
- "Product_Display_Name": "Project Plan 1 (for Department)",
- "String_Id": "PROJECT_PLAN1_DEPT",
- "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
- "Service_Plan_Name": "PROJECT_P1",
- "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9",
- "Service_Plans_Included_Friendly_Names": "Project P1"
- },
- {
- "Product_Display_Name": "Project Plan 1 (for Department)",
- "String_Id": "PROJECT_PLAN1_DEPT",
- "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD"
- },
- {
- "Product_Display_Name": "Project Plan 3",
- "String_Id": "PROJECTPROFESSIONAL",
- "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
- "Service_Plan_Name": "DYN365_CDS_PROJECT",
- "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Project"
- },
- {
- "Product_Display_Name": "Project Plan 3",
- "String_Id": "PROJECTPROFESSIONAL",
- "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Project Plan 3",
- "String_Id": "PROJECTPROFESSIONAL",
- "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
- "Service_Plan_Name": "FLOW_FOR_PROJECT",
- "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d",
- "Service_Plans_Included_Friendly_Names": "Flow for Project"
- },
- {
- "Product_Display_Name": "Project Plan 3",
- "String_Id": "PROJECTPROFESSIONAL",
- "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the web"
- },
- {
- "Product_Display_Name": "Project Plan 3",
- "String_Id": "PROJECTPROFESSIONAL",
- "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
- "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
- "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
- "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client"
- },
- {
- "Product_Display_Name": "Project Plan 3",
- "String_Id": "PROJECTPROFESSIONAL",
- "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
- "Service_Plan_Name": "SHAREPOINT_PROJECT",
- "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
- "Service_Plans_Included_Friendly_Names": "Project Online Service"
- },
- {
- "Product_Display_Name": "Project Plan 3",
- "String_Id": "PROJECTPROFESSIONAL",
- "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
- "Service_Plan_Name": "PROJECT_PROFESSIONAL",
- "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7",
- "Service_Plans_Included_Friendly_Names": "Project P3"
- },
- {
- "Product_Display_Name": "Project Plan 3",
- "String_Id": "PROJECTPROFESSIONAL",
- "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
- },
- {
- "Product_Display_Name": "Project Plan 3 (for Department)",
- "String_Id": "PROJECT_PLAN3_DEPT",
- "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
- "Service_Plan_Name": "DYN365_CDS_PROJECT",
- "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for Project"
- },
- {
- "Product_Display_Name": "Project Plan 3 (for Department)",
- "String_Id": "PROJECT_PLAN3_DEPT",
- "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Project Plan 3 (for Department)",
- "String_Id": "PROJECT_PLAN3_DEPT",
- "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
- "Service_Plan_Name": "FLOW_FOR_PROJECT",
- "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d",
- "Service_Plans_Included_Friendly_Names": "Flow for Project"
- },
- {
- "Product_Display_Name": "Project Plan 3 (for Department)",
- "String_Id": "PROJECT_PLAN3_DEPT",
- "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
- "Service_Plan_Name": "SHAREPOINTWAC",
- "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
- "Service_Plans_Included_Friendly_Names": "Office for the Web"
- },
- {
- "Product_Display_Name": "Project Plan 3 (for Department)",
- "String_Id": "PROJECT_PLAN3_DEPT",
- "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
- "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
- "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
- "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client"
- },
- {
- "Product_Display_Name": "Project Plan 3 (for Department)",
- "String_Id": "PROJECT_PLAN3_DEPT",
- "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
- "Service_Plan_Name": "SHAREPOINT_PROJECT",
- "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
- "Service_Plans_Included_Friendly_Names": "Project Online Service"
- },
- {
- "Product_Display_Name": "Project Plan 3 (for Department)",
- "String_Id": "PROJECT_PLAN3_DEPT",
- "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
- "Service_Plan_Name": "PROJECT_PROFESSIONAL",
- "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7",
- "Service_Plans_Included_Friendly_Names": "Project P3"
- },
- {
- "Product_Display_Name": "Project Plan 3 (for Department)",
- "String_Id": "PROJECT_PLAN3_DEPT",
- "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
- },
- {
- "Product_Display_Name": "Project Plan 3 for GCC",
- "String_Id": "PROJECTPROFESSIONAL_GOV",
- "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065",
- "Service_Plan_Name": "SHAREPOINTWAC_GOV",
- "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Government)"
- },
- {
- "Product_Display_Name": "Project Plan 3 for GCC",
- "String_Id": "PROJECTPROFESSIONAL_GOV",
- "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065",
- "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV",
- "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067",
- "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client for Government"
- },
- {
- "Product_Display_Name": "Project Plan 3 for GCC",
- "String_Id": "PROJECTPROFESSIONAL_GOV",
- "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065",
- "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV",
- "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472",
- "Service_Plans_Included_Friendly_Names": "Project Online Service for Government"
- },
- {
- "Product_Display_Name": "Project Plan 3 for GCC",
- "String_Id": "PROJECTPROFESSIONAL_GOV",
- "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
- "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
- },
- {
- "Product_Display_Name": "Project Plan 5 for GCC",
- "String_Id": "PROJECTPREMIUM_GOV",
- "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
- },
- {
- "Product_Display_Name": "Project Plan 5 for GCC",
- "String_Id": "PROJECTPREMIUM_GOV",
- "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6",
- "Service_Plan_Name": "SHAREPOINTWAC_GOV",
- "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
- "Service_Plans_Included_Friendly_Names": "Office for the web (Government)"
- },
- {
- "Product_Display_Name": "Project Plan 5 for GCC",
- "String_Id": "PROJECTPREMIUM_GOV",
- "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6",
- "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV",
- "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067",
- "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client for Government"
- },
- {
- "Product_Display_Name": "Project Plan 5 for GCC",
- "String_Id": "PROJECTPREMIUM_GOV",
- "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6",
- "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV",
- "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472",
- "Service_Plans_Included_Friendly_Names": "Project Online Service for Government"
- },
- {
- "Product_Display_Name": "Project Plan 5 for GCC",
- "String_Id": "PROJECTPREMIUM_GOV",
- "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
- "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
- "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
- },
- {
- "Product_Display_Name": "Rights Management Adhoc",
- "String_Id": "RIGHTSMANAGEMENT_ADHOC",
- "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Rights Management Adhoc",
- "String_Id": "RIGHTSMANAGEMENT_ADHOC",
- "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b",
- "Service_Plan_Name": "RMS_S_ADHOC",
- "Service_Plan_Id": "7a39d7dd-e456-4e09-842a-0204ee08187b",
- "Service_Plans_Included_Friendly_Names": "Rights Management Adhoc"
- },
- {
- "Product_Display_Name": "Rights Management Service Basic Content Protection",
- "String_Id": "RMSBASIC",
- "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Rights Management Service Basic Content Protection",
- "String_Id": "RMSBASIC",
- "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0",
- "Service_Plan_Name": "RMS_S_BASIC",
- "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
- "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
- },
- {
- "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management",
- "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES",
- "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management",
- "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES",
- "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9",
- "Service_Plan_Name": "D365_IOTFORSCM_ADDITIONAL",
- "Service_Plan_Id": "a5f38206-2f48-4d83-9957-525f4e75e9c0",
- "Service_Plans_Included_Friendly_Names": "IoT Intelligence Add-in Additional Machines"
- },
- {
- "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management",
- "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO",
- "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management",
- "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO",
- "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a",
- "Service_Plan_Name": "D365_IOTFORSCM",
- "Service_Plan_Id": "83dd9619-c7d5-44da-9250-dc4ee79fff7e",
- "Service_Plans_Included_Friendly_Names": "Iot Intelligence Add-in for D365 Supply Chain Management"
- },
- {
- "Product_Display_Name": "SHAREPOINT ONLINE (PLAN 1)",
- "String_Id": "SHAREPOINTSTANDARD",
- "GUID": "1fc08a02-8b3d-43b9-831e-f76859e04e1a",
- "Service_Plan_Name": "SHAREPOINTSTANDARD",
- "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
- },
- {
- "Product_Display_Name": "SHAREPOINT ONLINE (PLAN 2)",
- "String_Id": "SHAREPOINTENTERPRISE",
- "GUID": "a9732ec9-17d9-494c-a51c-d6b45b384dcb",
- "Service_Plan_Name": "SHAREPOINTENTERPRISE",
- "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
- "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "SharePoint Syntex",
- "String_Id": "Intelligent_Content_Services",
- "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4",
- "Service_Plan_Name": "CDS_O365_E5_KM",
- "Service_Plan_Id": "3069d530-e41b-421c-ad59-fb1001a23e11",
- "Service_Plans_Included_Friendly_Names": "Common Data Service for SharePoint Syntex"
- },
- {
- "Product_Display_Name": "SharePoint Syntex",
- "String_Id": "Intelligent_Content_Services",
- "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4",
- "Service_Plan_Name": "Intelligent_Content_Services",
- "Service_Plan_Id": "f00bd55e-1633-416e-97c0-03684e42bc42",
- "Service_Plans_Included_Friendly_Names": "SharePoint Syntex"
- },
- {
- "Product_Display_Name": "SharePoint Syntex",
- "String_Id": "Intelligent_Content_Services",
- "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4",
- "Service_Plan_Name": "Intelligent_Content_Services_SPO_type",
- "Service_Plan_Id": "fd2e7f90-1010-487e-a11b-d2b1ae9651fc",
- "Service_Plans_Included_Friendly_Names": "SharePoint Syntex - SPO type"
- },
- {
- "Product_Display_Name": "SKYPE FOR BUSINESS ONLINE (PLAN 1)",
- "String_Id": "MCOIMP",
- "GUID": "b8b749f8-a4ef-4887-9539-c95b1eaa5db7",
- "Service_Plan_Name": "MCOIMP",
- "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 1)"
- },
- {
- "Product_Display_Name": "SKYPE FOR BUSINESS ONLINE (PLAN 2)",
- "String_Id": "MCOSTANDARD",
- "GUID": "d42c793f-6c78-4f43-92ca-e8f6a02b035f",
- "Service_Plan_Name": "MCOSTANDARD",
- "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
- "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
- },
- {
- "Product_Display_Name": "SKYPE FOR BUSINESS PSTN DOMESTIC AND INTERNATIONAL CALLING",
- "String_Id": "MCOPSTN2",
- "GUID": "d3b4fe1f-9992-4930-8acb-ca6ec609365e",
- "Service_Plan_Name": "MCOPSTN2",
- "Service_Plan_Id": "5a10155d-f5c1-411a-a8ec-e99aae125390",
- "Service_Plans_Included_Friendly_Names": "DOMESTIC AND INTERNATIONAL CALLING PLAN"
- },
- {
- "Product_Display_Name": "SKYPE FOR BUSINESS PSTN DOMESTIC CALLING",
- "String_Id": "MCOPSTN1",
- "GUID": "0dab259f-bf13-4952-b7f8-7db8f131b28d",
- "Service_Plan_Name": "MCOPSTN1",
- "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8",
- "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN"
- },
- {
- "Product_Display_Name": "SKYPE FOR BUSINESS PSTN DOMESTIC CALLING (120 Minutes)",
- "String_Id": "MCOPSTN5",
- "GUID": "54a152dc-90de-4996-93d2-bc47e670fc06",
- "Service_Plan_Name": "MCOPSTN5",
- "Service_Plan_Id": "54a152dc-90de-4996-93d2-bc47e670fc06",
- "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN"
- },
- {
- "Product_Display_Name": "TELSTRA CALLING FOR O365",
- "String_Id": "MCOPSTNEAU2",
- "GUID": "de3312e1-c7b0-46e6-a7c3-a515ff90bc86",
- "Service_Plan_Name": "MCOPSTNEAU",
- "Service_Plan_Id": "7861360b-dc3b-4eba-a3fc-0d323a035746",
- "Service_Plans_Included_Friendly_Names": "AUSTRALIA CALLING PLAN"
- },
- {
- "Product_Display_Name": "Universal Print",
- "String_Id": "UNIVERSAL_PRINT",
- "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Universal Print",
- "String_Id": "UNIVERSAL_PRINT",
- "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
- },
- {
- "Product_Display_Name": "Visio Plan 1",
- "String_Id": "VISIO_PLAN1_DEPT",
- "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Visio Plan 1",
- "String_Id": "VISIO_PLAN1_DEPT",
- "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76",
- "Service_Plan_Name": "ONEDRIVE_BASIC",
- "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1",
- "Service_Plans_Included_Friendly_Names": "OneDrive for business Basic"
- },
- {
- "Product_Display_Name": "Visio Plan 1",
- "String_Id": "VISIO_PLAN1_DEPT",
- "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76",
- "Service_Plan_Name": "VISIOONLINE",
- "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f",
- "Service_Plans_Included_Friendly_Names": "Visio web app"
- },
- {
- "Product_Display_Name": "Visio Plan 2",
- "String_Id": "VISIO_PLAN2_DEPT",
- "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Visio Plan 2",
- "String_Id": "VISIO_PLAN2_DEPT",
- "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1",
- "Service_Plan_Name": "ONEDRIVE_BASIC",
- "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1",
- "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)"
- },
- {
- "Product_Display_Name": "Visio Plan 2",
- "String_Id": "VISIO_PLAN2_DEPT",
- "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1",
- "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION",
- "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea",
- "Service_Plans_Included_Friendly_Names": "Visio Desktop App"
- },
- {
- "Product_Display_Name": "Visio Plan 2",
- "String_Id": "VISIO_PLAN2_DEPT",
- "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1",
- "Service_Plan_Name": "VISIOONLINE",
- "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f",
- "Service_Plans_Included_Friendly_Names": "Visio Web App"
- },
- {
- "Product_Display_Name": "VISIO ONLINE PLAN 1",
- "String_Id": "VISIOONLINE_PLAN1",
- "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "VISIO ONLINE PLAN 1",
- "String_Id": "VISIOONLINE_PLAN1",
- "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd",
- "Service_Plan_Name": "ONEDRIVE_BASIC",
- "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1",
- "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC"
- },
- {
- "Product_Display_Name": "VISIO ONLINE PLAN 1",
- "String_Id": "VISIOONLINE_PLAN1",
- "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd",
- "Service_Plan_Name": "VISIOONLINE",
- "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f",
- "Service_Plans_Included_Friendly_Names": "VISIO WEB APP"
- },
- {
- "Product_Display_Name": "VISIO ONLINE PLAN 2",
- "String_Id": "VISIOCLIENT",
- "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "VISIO ONLINE PLAN 2",
- "String_Id": "VISIOCLIENT",
- "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5",
- "Service_Plan_Name": "ONEDRIVE_BASIC",
- "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1",
- "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC"
- },
- {
- "Product_Display_Name": "VISIO ONLINE PLAN 2",
- "String_Id": "VISIOCLIENT",
- "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5",
- "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION",
- "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea",
- "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP"
- },
- {
- "Product_Display_Name": "VISIO ONLINE PLAN 2",
- "String_Id": "VISIOCLIENT",
- "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5",
- "Service_Plan_Name": "VISIOONLINE",
- "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f",
- "Service_Plans_Included_Friendly_Names": "VISIO WEB APP"
- },
- {
- "Product_Display_Name": "VISIO PLAN 2 FOR GCC",
- "String_Id": "VISIOCLIENT_GOV",
- "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "VISIO PLAN 2 FOR GCC",
- "String_Id": "VISIOCLIENT_GOV",
- "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba",
- "Service_Plan_Name": "ONEDRIVE_BASIC_GOV",
- "Service_Plan_Id": "98709c2e-96b5-4244-95f5-a0ebe139fb8a",
- "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "VISIO PLAN 2 FOR GCC",
- "String_Id": "VISIOCLIENT_GOV",
- "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba",
- "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION_GOV",
- "Service_Plan_Id": "f85945f4-7a55-4009-bc39-6a5f14a8eac1",
- "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP FOR Government"
- },
- {
- "Product_Display_Name": "VISIO PLAN 2 FOR GCC",
- "String_Id": "VISIOCLIENT_GOV",
- "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba",
- "Service_Plan_Name": "VISIOONLINE_GOV",
- "Service_Plan_Id": "8a9ecb07-cfc0-48ab-866c-f83c4d911576",
- "Service_Plans_Included_Friendly_Names": "VISIO WEB APP FOR GOVERNMENT"
- },
- {
- "Product_Display_Name": "Viva Topics",
- "String_Id": "TOPIC_EXPERIENCES",
- "GUID": "4016f256-b063-4864-816e-d818aad600c9",
- "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP",
- "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0",
- "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Viva Topics)"
- },
- {
- "Product_Display_Name": "Viva Topics",
- "String_Id": "TOPIC_EXPERIENCES",
- "GUID": "4016f256-b063-4864-816e-d818aad600c9",
- "Service_Plan_Name": "CORTEX",
- "Service_Plan_Id": "c815c93d-0759-4bb8-b857-bc921a71be83",
- "Service_Plans_Included_Friendly_Names": "Viva Topics"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise A3 for faculty",
- "String_Id": "WIN10_ENT_A3_FAC",
- "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise A3 for faculty",
- "String_Id": "WIN10_ENT_A3_FAC",
- "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise A3 for faculty",
- "String_Id": "WIN10_ENT_A3_FAC",
- "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise A3 for faculty",
- "String_Id": "WIN10_ENT_A3_FAC",
- "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise A3 for students",
- "String_Id": "WIN10_ENT_A3_STU",
- "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise A3 for students",
- "String_Id": "WIN10_ENT_A3_STU",
- "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise A3 for students",
- "String_Id": "WIN10_ENT_A3_STU",
- "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise A3 for students",
- "String_Id": "WIN10_ENT_A3_STU",
- "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
- },
- {
- "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3",
- "String_Id": "WIN10_PRO_ENT_SUB",
- "GUID": "cb10e6cd-9da4-4992-867b-67546b1db821",
- "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
- "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
- "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE"
- },
- {
- "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3",
- "String_Id": "WIN10_VDA_E3",
- "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3",
- "String_Id": "WIN10_VDA_E3",
- "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "UNIVERSAL PRINT"
- },
- {
- "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3",
- "String_Id": "WIN10_VDA_E3",
- "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE (NEW)"
- },
- {
- "Product_Display_Name": "WINDOWS 10 ENTERPRISE E3",
- "String_Id": "WIN10_VDA_E3",
- "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "WINDOWS UPDATE FOR BUSINESS DEPLOYMENT SERVICE"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise E5",
- "String_Id": "WIN10_VDA_E5",
- "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise E5",
- "String_Id": "WIN10_VDA_E5",
- "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise E5",
- "String_Id": "WIN10_VDA_E5",
- "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002",
- "Service_Plan_Name": "UNIVERSAL_PRINT_01",
- "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
- "Service_Plans_Included_Friendly_Names": "Universal Print"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise E5",
- "String_Id": "WIN10_VDA_E5",
- "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise E5",
- "String_Id": "WIN10_VDA_E5",
- "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002",
- "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
- "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
- "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise E5 Commercial (GCC Compatible)",
- "String_Id": "WINE5_GCC_COMPAT",
- "GUID": "938fd547-d794-42a4-996c-1cc206619580",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
- "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise E5 Commercial (GCC Compatible)",
- "String_Id": "WINE5_GCC_COMPAT",
- "GUID": "938fd547-d794-42a4-996c-1cc206619580",
- "Service_Plan_Name": "WINDEFATP",
- "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
- "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint"
- },
- {
- "Product_Display_Name": "Windows 10 Enterprise E5 Commercial (GCC Compatible)",
- "String_Id": "WINE5_GCC_COMPAT",
- "GUID": "938fd547-d794-42a4-996c-1cc206619580",
- "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
- "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
- "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
- },
- {
- "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB",
- "String_Id": "CPC_B_2C_4RAM_64GB",
- "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB",
- "String_Id": "CPC_B_2C_4RAM_64GB",
- "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5",
- "Service_Plan_Name": "CPC_B_2C_4RAM_64GB",
- "Service_Plan_Id": "a790cd6e-a153-4461-83c7-e127037830b6",
- "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 64 GB"
- },
- {
- "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)",
- "String_Id": "CPC_B_4C_16RAM_128GB_WHB",
- "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)",
- "String_Id": "CPC_B_4C_16RAM_128GB_WHB",
- "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef",
- "Service_Plan_Name": "CPC_B_4C_16RAM_128GB",
- "Service_Plan_Id": "1d4f75d3-a19b-49aa-88cb-f1ea1690b550",
- "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 128 GB"
- },
- {
- "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB",
- "String_Id": "CPC_E_2C_4GB_64GB",
- "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
- },
- {
- "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB",
- "String_Id": "CPC_E_2C_4GB_64GB",
- "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f",
- "Service_Plan_Name": "CPC_E_2C_4GB_64GB",
- "Service_Plan_Id": "23a25099-1b2f-4e07-84bd-b84606109438",
- "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB"
- },
- {
- "Product_Display_Name": "WINDOWS STORE FOR BUSINESS",
- "String_Id": "WINDOWS_STORE",
- "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9",
- "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
- "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
- "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
- },
- {
- "Product_Display_Name": "WINDOWS STORE FOR BUSINESS",
- "String_Id": "WINDOWS_STORE",
- "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9",
- "Service_Plan_Name": "WINDOWS_STORE",
- "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d",
- "Service_Plans_Included_Friendly_Names": "WINDOWS STORE SERVICE"
- },
- {
- "Product_Display_Name": "Microsoft Workplace Analytics",
- "String_Id": "WORKPLACE_ANALYTICS",
- "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8",
- "Service_Plan_Name": "WORKPLACE_ANALYTICS",
- "Service_Plan_Id": "f477b0f0-3bb1-4890-940c-40fcee6ce05f",
- "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics"
- },
- {
- "Product_Display_Name": "Microsoft Workplace Analytics",
- "String_Id": "WORKPLACE_ANALYTICS",
- "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8",
- "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_BACKEND",
- "Service_Plan_Id": "ff7b261f-d98b-415b-827c-42a3fdf015af",
- "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights Backend"
- },
- {
- "Product_Display_Name": "Microsoft Workplace Analytics",
- "String_Id": "WORKPLACE_ANALYTICS",
- "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8",
- "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_USER",
- "Service_Plan_Id": "b622badb-1b45-48d5-920f-4b27a2c0996c",
- "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights User"
- }
-]
+[
+ {
+ "Product_Display_Name": "Advanced Communications",
+ "String_Id": "ADV_COMMS",
+ "GUID": "e4654015-5daf-4a48-9b37-4f309dddd88b",
+ "Service_Plan_Name": "TEAMS_ADVCOMMS",
+ "Service_Plan_Id": "604ec28a-ae18-4bc6-91b0-11da94504ba9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Communications"
+ },
+ {
+ "Product_Display_Name": "AI Builder Capacity add-on",
+ "String_Id": "CDSAICAPACITY",
+ "GUID": "d2dea78b-507c-4e56-b400-39447f4738f8",
+ "Service_Plan_Name": "CDSAICAPACITY",
+ "Service_Plan_Id": "a7c70a41-5e02-4271-93e6-d9b4184d83f5",
+ "Service_Plans_Included_Friendly_Names": "AI Builder capacity add-on"
+ },
+ {
+ "Product_Display_Name": "AI Builder Capacity add-on",
+ "String_Id": "CDSAICAPACITY",
+ "GUID": "d2dea78b-507c-4e56-b400-39447f4738f8",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "App Connect IW",
+ "String_Id": "SPZA_IW",
+ "GUID": "8f0c5670-4e56-4892-b06d-91c085d7004f",
+ "Service_Plan_Name": "SPZA",
+ "Service_Plan_Id": "0bfc98ed-1dbc-4a97-b246-701754e48b17",
+ "Service_Plans_Included_Friendly_Names": "APP CONNECT"
+ },
+ {
+ "Product_Display_Name": "App Connect IW",
+ "String_Id": "SPZA_IW",
+ "GUID": "8f0c5670-4e56-4892-b06d-91c085d7004f",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "App governance add-on to Microsoft Defender for Cloud Apps",
+ "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On",
+ "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b",
+ "Service_Plan_Name": "M365_AUDIT_PLATFORM",
+ "Service_Plan_Id": "f6de4823-28fa-440b-b886-4783fa86ddba",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audit Platform"
+ },
+ {
+ "Product_Display_Name": "App governance add-on to Microsoft Defender for Cloud Apps",
+ "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On",
+ "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b",
+ "Service_Plan_Name": "MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_A",
+ "Service_Plan_Id": "5f3b1ded-75c0-4b31-8e6e-9b077eaadfd5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Application Protection and Governance (A)"
+ },
+ {
+ "Product_Display_Name": "App governance add-on to Microsoft Defender for Cloud Apps",
+ "String_Id": "Microsoft_Cloud_App_Security_App_Governance_Add_On",
+ "GUID": "9706eed9-966f-4f1b-94f6-bb2b4af99a5b",
+ "Service_Plan_Name": "MICROSOFT_APPLICATION_PROTECTION_AND_GOVERNANCE_D",
+ "Service_Plan_Id": "2e6ffd72-52d1-4541-8f6c-938f9a8d4cdc",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Application Protection and Governance (D)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Audio Conferencing",
+ "String_Id": "MCOMEETADV",
+ "GUID": "0c266dff-15dd-4b49-8397-2bb16070ed52",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Basic",
+ "String_Id": "AAD_BASIC",
+ "GUID": "2b9c8e7c-319c-43a2-a2a0-48c5c6161de7",
+ "Service_Plan_Name": "AAD_BASIC",
+ "Service_Plan_Id": "c4da7f8a-5ee2-4c99-a7e1-87d2df57f6fe",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY BASIC"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P1",
+ "String_Id": "AAD_PREMIUM",
+ "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P1",
+ "String_Id": "AAD_PREMIUM",
+ "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P1",
+ "String_Id": "AAD_PREMIUM",
+ "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P1",
+ "String_Id": "AAD_PREMIUM",
+ "GUID": "078d2b04-f1bd-4111-bbd4-b4b1b354cef4",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P1 for Faculty",
+ "String_Id": "AAD_PREMIUM_FACULTY",
+ "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P1 for Faculty",
+ "String_Id": "AAD_PREMIUM_FACULTY",
+ "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P1 for Faculty",
+ "String_Id": "AAD_PREMIUM_FACULTY",
+ "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P1 for Faculty",
+ "String_Id": "AAD_PREMIUM_FACULTY",
+ "GUID": "30fc3c36-5a95-4956-ba57-c09c2a600bb9",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P2",
+ "String_Id": "AAD_PREMIUM_P2",
+ "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P2",
+ "String_Id": "AAD_PREMIUM_P2",
+ "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P2"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P2",
+ "String_Id": "AAD_PREMIUM_P2",
+ "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P2",
+ "String_Id": "AAD_PREMIUM_P2",
+ "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Azure Active Directory Premium P2",
+ "String_Id": "AAD_PREMIUM_P2",
+ "GUID": "84a661c4-e949-4bd2-a560-ed7766fcaf2b",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION"
+ },
+ {
+ "Product_Display_Name": "Azure Information Protection Plan 1",
+ "String_Id": "RIGHTSMANAGEMENT",
+ "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1"
+ },
+ {
+ "Product_Display_Name": "Azure Information Protection Plan 1",
+ "String_Id": "RIGHTSMANAGEMENT",
+ "GUID": "c52ea49f-fe5d-4e95-93ba-1de91d380f89",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS"
+ },
+ {
+ "Product_Display_Name": "Business Apps (free)",
+ "String_Id": "SMB_APPS",
+ "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96",
+ "Service_Plan_Name": "DYN365BC_MS_INVOICING",
+ "Service_Plan_Id": "39b5c996-467e-4e60-bd62-46066f572726",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Invoicing"
+ },
+ {
+ "Product_Display_Name": "Business Apps (free)",
+ "String_Id": "SMB_APPS",
+ "GUID": "90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Common Data Service for Apps File Capacity",
+ "String_Id": "CDS_FILE_CAPACITY",
+ "GUID": "631d5fb1-a668-4c2a-9427-8830665a742e",
+ "Service_Plan_Name": "CDS_FILE_CAPACITY",
+ "Service_Plan_Id": "dd12a3a8-caec-44f8-b4fb-2f1a864b51e3",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps File Capacity"
+ },
+ {
+ "Product_Display_Name": "Common Data Service for Apps File Capacity",
+ "String_Id": "CDS_FILE_CAPACITY",
+ "GUID": "631d5fb1-a668-4c2a-9427-8830665a742e",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Common Data Service Database Capacity",
+ "String_Id": "CDS_DB_CAPACITY",
+ "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0",
+ "Service_Plan_Name": "CDS_DB_CAPACITY",
+ "Service_Plan_Id": "360bcc37-0c11-4264-8eed-9fa7a3297c9b",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Database Capacity"
+ },
+ {
+ "Product_Display_Name": "Common Data Service Database Capacity",
+ "String_Id": "CDS_DB_CAPACITY",
+ "GUID": "e612d426-6bc3-4181-9658-91aa906b0ac0",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Common Data Service Database Capacity for Government",
+ "String_Id": "CDS_DB_CAPACITY_GOV",
+ "GUID": "eddf428b-da0e-4115-accf-b29eb0b83965",
+ "Service_Plan_Name": "CDS_DB_CAPACITY_GOV",
+ "Service_Plan_Id": "1ddffef6-4f69-455e-89c7-d5d72105f915",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Database Capacity for Government"
+ },
+ {
+ "Product_Display_Name": "Common Data Service Database Capacity for Government",
+ "String_Id": "CDS_DB_CAPACITY_GOV",
+ "GUID": "eddf428b-da0e-4115-accf-b29eb0b83965",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Common Data Service Log Capacity",
+ "String_Id": "CDS_LOG_CAPACITY",
+ "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395",
+ "Service_Plan_Name": "CDS_LOG_CAPACITY",
+ "Service_Plan_Id": "dc48f5c5-e87d-43d6-b884-7ac4a59e7ee9",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Apps Log Capacity"
+ },
+ {
+ "Product_Display_Name": "Common Data Service Log Capacity",
+ "String_Id": "CDS_LOG_CAPACITY",
+ "GUID": "448b063f-9cc6-42fc-a0e6-40e08724a395",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Communications Credits",
+ "String_Id": "MCOPSTNC",
+ "GUID": "47794cd0-f0e5-45c5-9033-2eb6b5fc84e0",
+ "Service_Plan_Name": "MCOPSTNC",
+ "Service_Plan_Id": "505e180f-f7e0-4b65-91d4-00d670bbd18c",
+ "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS CREDITS"
+ },
+ {
+ "Product_Display_Name": "Compliance Manager Premium Assessment Add-On",
+ "String_Id": "CMPA_addon",
+ "GUID": "8a5fbbed-8b8c-41e5-907e-c50c471340fd",
+ "Service_Plan_Name": "COMPLIANCE_MANAGER_PREMIUM_ASSESSMENT_ADDON",
+ "Service_Plan_Id": "3a117d30-cfac-4f00-84ac-54f8b6a18d78",
+ "Service_Plans_Included_Friendly_Names": "Compliance Manager Premium Assessment Add-On"
+ },
+ {
+ "Product_Display_Name": "Compliance Manager Premium Assessment Add-On for GCC",
+ "String_Id": "CMPA_addon_GCC",
+ "GUID": "a9d7ef53-9bea-4a2a-9650-fa7df58fe094",
+ "Service_Plan_Name": "COMPLIANCE_MANAGER_PREMIUM_ASSESSMENT_ADDON",
+ "Service_Plan_Id": "3a117d30-cfac-4f00-84ac-54f8b6a18d78",
+ "Service_Plans_Included_Friendly_Names": "Compliance Manager Premium Assessment Add-On"
+ },
+ {
+ "Product_Display_Name": "Defender Threat Intelligence",
+ "String_Id": "Defender_Threat_Intelligence",
+ "GUID": "a9c51c15-ffad-4c66-88c0-8771455c832d",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE_APP",
+ "Service_Plan_Id": "fbdb91e6-7bfd-4a1f-8f7a-d27f4ef39702",
+ "Service_Plans_Included_Friendly_Names": "Defender Threat Intelligence"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)",
+ "String_Id": "CRMSTORAGE",
+ "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 - Additional Database Storage (Qualified Offer)",
+ "String_Id": "CRMSTORAGE",
+ "GUID": "328dc228-00bc-48c6-8b09-1fbc8bc3435d",
+ "Service_Plan_Name": "CRMSTORAGE",
+ "Service_Plan_Id": "77866113-0f3e-4e6e-9666-b1e25c6f99b0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Storage Add-On"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)",
+ "String_Id": "CRMINSTANCE",
+ "GUID": "9d776713-14cb-4697-a21d-9a52455c738a",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 - Additional Production Instance (Qualified Offer)",
+ "String_Id": "CRMINSTANCE",
+ "GUID": "9d776713-14cb-4697-a21d-9a52455c738a",
+ "Service_Plan_Name": "CRMINSTANCE",
+ "Service_Plan_Id": "eeea837a-c885-4167-b3d5-ddde30cbd85f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Instance"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)",
+ "String_Id": "CRMTESTINSTANCE",
+ "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 - Additional Non-Production Instance (Qualified Offer)",
+ "String_Id": "CRMTESTINSTANCE",
+ "GUID": "e06abcc2-7ec5-4a79-b08b-d9c282376f72",
+ "Service_Plan_Name": "CRMTESTINSTANCE",
+ "Service_Plan_Id": "a98b7619-66c7-4885-bdfc-1d9c8c3d279f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online Additional Test Instance"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 AI for Market Insights (Preview)",
+ "String_Id": "SOCIAL_ENGAGEMENT_APP_USER",
+ "GUID": "c6df1e30-1c9f-427f-907c-3d913474a1c7",
+ "Service_Plan_Name": "SOCIAL_ENGAGEMENT_APP_USER",
+ "Service_Plan_Id": "339f4def-5ad8-4430-8d12-da5fd4c769a7",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Market Insights - Free"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 AI for Market Insights (Preview)",
+ "String_Id": "SOCIAL_ENGAGEMENT_APP_USER",
+ "GUID": "c6df1e30-1c9f-427f-907c-3d913474a1c7",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets",
+ "String_Id": "DYN365_ASSETMANAGEMENT",
+ "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75",
+ "Service_Plan_Name": "D365_AssetforSCM",
+ "Service_Plan_Id": "90467813-5b40-40d4-835c-abd48009b1d9",
+ "Service_Plans_Included_Friendly_Names": "Asset Maintenance Add-in"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Asset Management Addl Assets",
+ "String_Id": "DYN365_ASSETMANAGEMENT",
+ "GUID": "673afb9d-d85b-40c2-914e-7bf46cd5cd75",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Additional Environment Addon",
+ "String_Id": "DYN365_BUSCENTRAL_ADD_ENV_ADDON",
+ "GUID": "a58f5506-b382-44d4-bfab-225b2fbf8390",
+ "Service_Plan_Name": "DYN365_BUSCENTRAL_ENVIRONMENT",
+ "Service_Plan_Id": "d397d6c6-9664-4502-b71c-66f39c400ca4",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Additional Environment Addon"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Database Capacity",
+ "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY",
+ "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74",
+ "Service_Plan_Name": "DYN365_BUSCENTRAL_DB_CAPACITY",
+ "Service_Plan_Id": "ae6b27b3-fe31-4e77-ae06-ec5fabbc103a",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Database Capacity"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Database Capacity",
+ "String_Id": "DYN365_BUSCENTRAL_DB_CAPACITY",
+ "GUID": "7d0d4f9a-2686-4cb8-814c-eff3fdab6d74",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Essentials",
+ "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL",
+ "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa",
+ "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS",
+ "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Business Central Essentials"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Essentials",
+ "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL",
+ "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Essentials",
+ "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL",
+ "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Essentials",
+ "String_Id": "DYN365_BUSCENTRAL_ESSENTIAL",
+ "GUID": "2880026b-2b0c-4251-8656-5d41ff11e3aa",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central External Accountant",
+ "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU",
+ "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4",
+ "Service_Plan_Name": "DYN365_FINANCIALS_ACCOUNTANT",
+ "Service_Plan_Id": "170991d7-b98e-41c5-83d4-db2052e1795f",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central External Accountant"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central External Accountant",
+ "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU",
+ "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central External Accountant",
+ "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU",
+ "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central External Accountant",
+ "String_Id": "DYN365_FINANCIALS_ACCOUNTANT_SKU",
+ "GUID": "9a1e33ed-9697-43f3-b84c-1b0959dbb1d4",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central for IWs",
+ "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU",
+ "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd",
+ "Service_Plan_Name": "PROJECT_MADEIRA_PREVIEW_IW",
+ "Service_Plan_Id": "3f2afeed-6fb5-4bf9-998f-f2912133aead",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central for IWs"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central for IWs",
+ "String_Id": "PROJECT_MADEIRA_PREVIEW_IW_SKU",
+ "GUID": "6a4a1628-9b9a-424d-bed5-4118f0ede3fd",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Premium",
+ "String_Id": "DYN365_BUSCENTRAL_PREMIUM",
+ "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029",
+ "Service_Plan_Name": "DYN365_BUSCENTRAL_PREMIUM",
+ "Service_Plan_Id": "8e9002c0-a1d8-4465-b952-817d2948e6e2",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Business Central Premium"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Premium",
+ "String_Id": "DYN365_BUSCENTRAL_PREMIUM",
+ "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Premium",
+ "String_Id": "DYN365_BUSCENTRAL_PREMIUM",
+ "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Premium",
+ "String_Id": "DYN365_BUSCENTRAL_PREMIUM",
+ "GUID": "f991cecc-3f91-4cd0-a9a8-bf1c8167e029",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Team Members",
+ "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER",
+ "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835",
+ "Service_Plan_Name": "DYN365_FINANCIALS_TEAM_MEMBERS",
+ "Service_Plan_Id": "d9a6391b-8970-4976-bd94-5f205007c8d8",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Team Members"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Team Members",
+ "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER",
+ "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Team Members",
+ "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER",
+ "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835",
+ "Service_Plan_Name": "POWERAPPS_DYN_TEAM",
+ "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Business Central Team Members",
+ "String_Id": "DYN365_BUSCENTRAL_TEAM_MEMBER",
+ "GUID": "2e3c4023-80f6-4711-aa5d-29e0ecb46835",
+ "Service_Plan_Name": "FLOW_DYN_TEAM",
+ "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Commerce Trial",
+ "String_Id": "DYN365_RETAIL_TRIAL",
+ "GUID": "1508ad2d-5802-44e6-bfe8-6fb65de63d28",
+ "Service_Plan_Name": "DYN365_RETAIL_TRIAL",
+ "Service_Plan_Id": "874d6da5-2a67-45c1-8635-96e8b3e300ea",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Trial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Commerce Trial",
+ "String_Id": "DYN365_RETAIL_TRIAL",
+ "GUID": "1508ad2d-5802-44e6-bfe8-6fb65de63d28",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "D365_CSI_EMBED_CE",
+ "Service_Plan_Id": "1412cdc1-d593-4ad1-9050-40c30ad0b023",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CE Plan"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_P1",
+ "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 P1"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "D365_ProjectOperations",
+ "Service_Plan_Id": "69f07c66-bee4-4222-b051-195095efee5b",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "D365_ProjectOperationsCDS",
+ "Service_Plan_Id": "18fa3aba-b085-4105-87d7-55617b8585e6",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Project Operations CDS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "FLOW_DYN_P2",
+ "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57",
+ "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "Forms_Pro_CE",
+ "Service_Plan_Id": "97f29a83-1a20-44ff-bf48-5e4ad11f3e51",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Engagement Plan"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "NBENTERPRISE",
+ "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Social Engagement Enterprise"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the web"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "POWERAPPS_DYN_P2",
+ "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "PROJECT_FOR_PROJECT_OPERATIONS",
+ "Service_Plan_Id": "0a05d977-a21a-45b2-91ce-61c240dbafa2",
+ "Service_Plans_Included_Friendly_Names": "Project for Project Operations"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
+ "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
+ "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "SHAREPOINT_PROJECT",
+ "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
+ "Service_Plans_Included_Friendly_Names": "Project Online Service"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Engagement Plan",
+ "String_Id": "DYN365_ENTERPRISE_PLAN1",
+ "GUID": "ea126fc5-a19e-42e2-a731-da9d437bffcf",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights Attach",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH",
+ "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b",
+ "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_BASE",
+ "Service_Plan_Id": "d04ca659-b119-4a92-b8fc-3ede584a9d65",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for Customer Insights?BASE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights Attach",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH",
+ "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b",
+ "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS",
+ "Service_Plan_Id": "ca00cff5-2568-4d03-bb6c-a653a8f360ca",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights Attach",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH",
+ "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b",
+ "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_BASE",
+ "Service_Plan_Id": "ee85d528-c4b4-4a99-9b07-fb9a1365dc93",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights Attach",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH",
+ "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b",
+ "Service_Plan_Name": "Customer_Voice_Customer_Insights",
+ "Service_Plan_Id": "46c5ea0a-2343-49d9-ae4f-1c268b232d53",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights App"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights Attach",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_ATTACH",
+ "GUID": "a3d0cd86-8068-4071-ad40-4dc5b5908c4b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
+ "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f",
+ "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
+ "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Service_Plan_Name": "DYN365_CS_MESSAGING_TPS",
+ "Service_Plan_Id": "47c2b191-a5fb-4129-b690-00c474d2f623",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging add-on"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
+ "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Service_Plan_Name": "D365_CSI_EMBED_CSEnterprise",
+ "Service_Plan_Id": "5b1e5982-0e88-47bb-a95e-ae6085eda612",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CS Enterprise"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
+ "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "Service_Plan_Id": "99340b49-fb81-4b1e-976b-8f2ae8e9394f",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
+ "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Service_Plan_Name": "DYN365_CS_VOICE",
+ "Service_Plan_Id": "f6ec6dfa-2402-468d-a455-89be11116d43",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Voice Add-in"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
+ "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_VOICE",
+ "Service_Plan_Id": "a3dce1be-e9ca-453a-9483-e69a5b46ce98",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Customer Service Voice"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
+ "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_MESSAGING",
+ "Service_Plan_Id": "2d2f174c-c3cc-4abe-9ce8-4dd86f469ab1",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Digital Messaging"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
+ "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
+ "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Admin",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_admin_trial",
+ "GUID": "94a6fbd4-6a2f-4990-b356-dc7dd8bed08a",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights Standalone",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE",
+ "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2",
+ "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_BASE",
+ "Service_Plan_Id": "d04ca659-b119-4a92-b8fc-3ede584a9d65",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for Cust Insights?BASE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights Standalone",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE",
+ "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2",
+ "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS",
+ "Service_Plan_Id": "ca00cff5-2568-4d03-bb6c-a653a8f360ca",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights Standalone",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE",
+ "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2",
+ "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_BASE",
+ "Service_Plan_Id": "ee85d528-c4b4-4a99-9b07-fb9a1365dc93",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights Standalone",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE",
+ "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2",
+ "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE",
+ "Service_Plan_Id": "b3c26516-3b8d-492f-a5a3-64d70ad3f8d0",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Engagement Insights"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights Standalone",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE",
+ "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2",
+ "Service_Plan_Name": "Customer_Voice_Customer_Insights",
+ "Service_Plan_Id": "46c5ea0a-2343-49d9-ae4f-1c268b232d53",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights App"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights Standalone",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_BASE",
+ "GUID": "0c250654-c7f7-461f-871a-7222f6592cf2",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights vTrial",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL",
+ "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d",
+ "Service_Plan_Name": "CDS_CUSTOMER_INSIGHTS_TRIAL",
+ "Service_Plan_Id": "94e5cbf6-d843-4ee8-a2ec-8b15eb52019e",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Customer Insights Trial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights vTrial",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL",
+ "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d",
+ "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_ENGAGEMENT_INSIGHTS_BASE_TRIAL",
+ "Service_Plan_Id": "e2bdea63-235e-44c6-9f5e-5b0e783f07dd",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Engagement Insights Viral"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights vTrial",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL",
+ "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d",
+ "Service_Plan_Name": "DYN365_CUSTOMER_INSIGHTS_VIRAL",
+ "Service_Plan_Id": "ed8e8769-94c5-4132-a3e7-7543b713d51f",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Insights Viral Plan"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Insights vTrial",
+ "String_Id": "DYN365_CUSTOMER_INSIGHTS_VIRAL",
+ "GUID": "036c2481-aa8a-47cd-ab43-324f0c157c2d",
+ "Service_Plan_Name": "Forms_Pro_Customer_Insights",
+ "Service_Plan_Id": "fe581650-cf61-4a09-8814-4bd77eca9cb5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Insights"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A",
+ "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH",
+ "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2",
+ "Service_Plan_Name": "D365_CUSTOMER_SERVICE_ENT_ATTACH",
+ "Service_Plan_Id": "61a2665f-1873-488c-9199-c3d0bc213fdf",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Enterprise Attach"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A",
+ "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH",
+ "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2",
+ "Service_Plan_Name": "Power_Pages_Internal_User",
+ "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941",
+ "Service_Plans_Included_Friendly_Names": "Power Pages Internal User"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Attach to Qualifying Dynamics 365 Base Offer A",
+ "String_Id": "D365_CUSTOMER_SERVICE_ENT_ATTACH",
+ "GUID": "eb18b715-ea9d-4290-9994-2ebf4b5042d2",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial",
+ "GUID": "1e615a51-59db-4807-9957-aa83c3657351",
+ "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f",
+ "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial",
+ "GUID": "1e615a51-59db-4807-9957-aa83c3657351",
+ "Service_Plan_Name": "CCIBOTS_PRIVPREV_VIRAL",
+ "Service_Plan_Id": "ce312d15-8fdf-44c0-9974-a25a177125ee",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Virtual Agents Viral"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial",
+ "GUID": "1e615a51-59db-4807-9957-aa83c3657351",
+ "Service_Plan_Name": "DYN365_CS_MESSAGING_VIRAL_TRIAL",
+ "Service_Plan_Id": "3bf52bdf-5226-4a97-829e-5cca9b3f3392",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Digital Messaging vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial",
+ "GUID": "1e615a51-59db-4807-9957-aa83c3657351",
+ "Service_Plan_Name": "DYN365_CS_ENTERPRISE_VIRAL_TRIAL",
+ "Service_Plan_Id": "94fb67d3-465f-4d1f-a50a-952da079a564",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Enterprise vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial",
+ "GUID": "1e615a51-59db-4807-9957-aa83c3657351",
+ "Service_Plan_Name": "DYNB365_CSI_VIRAL_TRIAL",
+ "Service_Plan_Id": "33f1466e-63a6-464c-bf6a-d1787928a56a",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial",
+ "GUID": "1e615a51-59db-4807-9957-aa83c3657351",
+ "Service_Plan_Name": "DYN365_CS_VOICE_VIRAL_TRIAL",
+ "Service_Plan_Id": "3de81e39-4ce1-47f7-a77f-8473d4eb6d7c",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Voice vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial",
+ "GUID": "1e615a51-59db-4807-9957-aa83c3657351",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial",
+ "GUID": "1e615a51-59db-4807-9957-aa83c3657351",
+ "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Enterprise Viral Trial",
+ "String_Id": "Dynamics_365_Customer_Service_Enterprise_viral_trial",
+ "GUID": "1e615a51-59db-4807-9957-aa83c3657351",
+ "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Insights Trial",
+ "String_Id": "DYN365_AI_SERVICE_INSIGHTS",
+ "GUID": "61e6bd70-fbdb-4deb-82ea-912842f39431",
+ "Service_Plan_Name": "DYN365_AI_SERVICE_INSIGHTS",
+ "Service_Plan_Id": "4ade5aa6-5959-4d2c-bf0a-f4c9e2cc00f2",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Trial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Trial",
+ "String_Id": "FORMS_PRO",
+ "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c",
+ "Service_Plan_Name": "DYN365_CDS_FORMS_PRO",
+ "Service_Plan_Id": "363430d1-e3f7-43bc-b07b-767b6bb95e4b",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Trial",
+ "String_Id": "FORMS_PRO",
+ "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c",
+ "Service_Plan_Name": "FORMS_PRO",
+ "Service_Plan_Id": "17efdd9f-c22c-4ad8-b48e-3b1f3ee1dc9a",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Trial",
+ "String_Id": "FORMS_PRO",
+ "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Trial",
+ "String_Id": "FORMS_PRO",
+ "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c",
+ "Service_Plan_Name": "FORMS_PLAN_E5",
+ "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Trial",
+ "String_Id": "FORMS_PRO",
+ "GUID": "bc946dac-7877-4271-b2f7-99d2db13cd2c",
+ "Service_Plan_Name": "FLOW_FORMS_PRO",
+ "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Professional",
+ "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
+ "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
+ "Service_Plan_Name": "DYN365_CUSTOMER_SERVICE_PRO",
+ "Service_Plan_Id": "6929f657-b31b-4947-b4ce-5066c3214f54",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Pro"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Professional",
+ "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
+ "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Professional",
+ "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
+ "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the web"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Professional",
+ "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
+ "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
+ "Service_Plan_Name": "POWERAPPS_CUSTOMER_SERVICE_PRO",
+ "Service_Plan_Id": "c507b04c-a905-4940-ada6-918891e6d3ad",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Customer Service Pro"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Professional",
+ "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
+ "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
+ "Service_Plan_Name": "FLOW_CUSTOMER_SERVICE_PRO",
+ "Service_Plan_Id": "0368fc9c-3721-437f-8b7d-3d0f888cdefc",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Customer Service Pro"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Professional",
+ "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
+ "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Service Professional",
+ "String_Id": "DYN365_CUSTOMER_SERVICE_PRO",
+ "GUID": "1439b6e2-5d59-4873-8c59-d60e2a196e92",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice",
+ "String_Id": "DYN365_CUSTOMER_VOICE_BASE",
+ "GUID": "359ea3e6-8130-4a57-9f8f-ad897a0342f1",
+ "Service_Plan_Name": "Customer_Voice_Base",
+ "Service_Plan_Id": "296820fe-dce5-40f4-a4f2-e14b8feef383",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Voice Base Plan"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice",
+ "String_Id": "DYN365_CUSTOMER_VOICE_BASE",
+ "GUID": "359ea3e6-8130-4a57-9f8f-ad897a0342f1",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
+ "String_Id": "Forms_Pro_AddOn",
+ "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
+ "String_Id": "Forms_Pro_AddOn",
+ "GUID": "446a86f8-a0cb-4095-83b3-d100eb050e3d",
+ "Service_Plan_Name": "Forms_Pro_AddOn",
+ "Service_Plan_Id": "90a816f6-de5f-49fd-963c-df490d73b7b5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice Add-on"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
+ "String_Id": "DYN365_CUSTOMER_VOICE_ADDON",
+ "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782",
+ "Service_Plan_Name": "CUSTOMER_VOICE_ADDON",
+ "Service_Plan_Id": "e6e35e2d-2e7f-4e71-bc6f-2f40ed062f5d",
+ "Service_Plans_Included_Friendly_Names": "Dynamics Customer Voice Add-On"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice Additional Responses",
+ "String_Id": "DYN365_CUSTOMER_VOICE_ADDON",
+ "GUID": "65f71586-ade3-4ce1-afc0-1b452eaf3782",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice USL",
+ "String_Id": "Forms_Pro_USL",
+ "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba",
+ "Service_Plan_Name": "CDS_FORM_PRO_USL",
+ "Service_Plan_Id": "e9830cfd-e65d-49dc-84fb-7d56b9aa2c89",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice USL",
+ "String_Id": "Forms_Pro_USL",
+ "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba",
+ "Service_Plan_Name": "Forms_Pro_USL",
+ "Service_Plan_Id": "3ca0766a-643e-4304-af20-37f02726339b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice USL"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Customer Voice USL",
+ "String_Id": "Forms_Pro_USL",
+ "GUID": "e2ae107b-a571-426f-9367-6d4c8f1390ba",
+ "Service_Plan_Name": "FLOW_FORMS_PRO",
+ "Service_Plan_Id": "57a0746c-87b8-4405-9397-df365a9db793",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 Customer Voice"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)",
+ "String_Id": "CRM_ONLINE_PORTAL",
+ "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Enterprise Edition - Additional Portal (Qualified Offer)",
+ "String_Id": "CRM_ONLINE_PORTAL",
+ "GUID": "a4bfb28e-becc-41b0-a454-ac680dc258d3",
+ "Service_Plan_Name": "CRM_ONLINE_PORTAL",
+ "Service_Plan_Id": "1d4e9cb1-708d-449c-9f71-943aa8ed1d6a",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics CRM Online - Portal Add-On"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Field Service, Enterprise Edition - Resource Scheduling Optimization",
+ "String_Id": "CRM_AUTO_ROUTING_ADDON",
+ "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196",
+ "Service_Plan_Name": "CRM_AUTO_ROUTING_ENGINE_ADDON",
+ "Service_Plan_Id": "24435e4b-87d0-4d7d-8beb-63a9b1573022",
+ "Service_Plans_Included_Friendly_Names": "Field Service ? Automated Routing Engine Add-On"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Field Service, Enterprise Edition - Resource Scheduling Optimization",
+ "String_Id": "CRM_AUTO_ROUTING_ADDON",
+ "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196",
+ "Service_Plan_Name": "CRM_AUTO_ROUTING_ADDON",
+ "Service_Plan_Id": "2ba394e0-6f18-4b77-b45f-a5663bbab540",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Field Service ? Automated Routing Engine Add-On"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Field Service, Enterprise Edition - Resource Scheduling Optimization",
+ "String_Id": "CRM_AUTO_ROUTING_ADDON",
+ "GUID": "977464c4-bfaf-4b67-b761-a9bb735a2196",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Field Service Viral Trial",
+ "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial",
+ "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3",
+ "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f",
+ "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Field Service Viral Trial",
+ "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial",
+ "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3",
+ "Service_Plan_Name": "DYN365_FS_ENTERPRISE_VIRAL_TRIAL",
+ "Service_Plan_Id": "20d1455b-72b2-4725-8354-a177845ab77d",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Field Service Enterprise vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Field Service Viral Trial",
+ "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial",
+ "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Field Service Viral Trial",
+ "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial",
+ "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3",
+ "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Field Service Viral Trial",
+ "String_Id": "Dynamics_365_Field_Service_Enterprise_viral_trial",
+ "GUID": "29fcd665-d8d1-4f34-8eed-3811e3fca7b3",
+ "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Finance",
+ "String_Id": "DYN365_FINANCE",
+ "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
+ "Service_Plan_Name": "DYN365_CDS_FINANCE",
+ "Service_Plan_Id": "e95d7060-d4d9-400a-a2bd-a244bf0b609e",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Dynamics 365 Finance"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Finance",
+ "String_Id": "DYN365_FINANCE",
+ "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
+ "Service_Plan_Name": "DYN365_REGULATORY_SERVICE",
+ "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Finance",
+ "String_Id": "DYN365_FINANCE",
+ "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Finance",
+ "String_Id": "DYN365_FINANCE",
+ "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
+ "Service_Plan_Name": "D365_Finance",
+ "Service_Plan_Id": "9f0e1b4e-9b33-4300-b451-b2c662cd4ff7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 for Finance"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Finance",
+ "String_Id": "DYN365_FINANCE",
+ "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Finance",
+ "String_Id": "DYN365_FINANCE",
+ "GUID": "55c9eb4e-c746-45b4-b255-9ab6b19d5c62",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT",
+ "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_CASE_MANAGEMENT",
+ "Service_Plan_Id": "2822a3a1-9b8f-4432-8989-e11669a60dc8",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Case Management"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT",
+ "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0",
+ "Service_Plan_Name": "NBENTERPRISE",
+ "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
+ "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT",
+ "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT",
+ "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT",
+ "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT",
+ "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT",
+ "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Case Management Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CASE_MANAGEMENT",
+ "GUID": "d39fb075-21ae-42d0-af80-22a2599749e0",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Chat",
+ "String_Id": "DYN365_CS_CHAT",
+ "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909",
+ "Service_Plan_Name": "DYN365_CS_CHAT_FPA",
+ "Service_Plan_Id": "426ec19c-d5b1-4548-b894-6fe75028c30d",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Chat Application Integration"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Chat",
+ "String_Id": "DYN365_CS_CHAT",
+ "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909",
+ "Service_Plan_Name": "DYN365_CS_CHAT",
+ "Service_Plan_Id": "f69129db-6dc1-4107-855e-0aaebbcd9dd4",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Customer Service Chat"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Chat",
+ "String_Id": "DYN365_CS_CHAT",
+ "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_D365_CS_CHAT",
+ "Service_Plan_Id": "19e4c3a8-3ebe-455f-a294-4f3479873ae3",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Chat"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Chat",
+ "String_Id": "DYN365_CS_CHAT",
+ "GUID": "7d7af6c2-0be6-46df-84d1-c181b0272909",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "GUID": "749742bf-0d37-4158-a120-33567104deeb",
+ "Service_Plan_Name": "D365_CSI_EMBED_CSEnterprise",
+ "Service_Plan_Id": "5b1e5982-0e88-47bb-a95e-ae6085eda612",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Service Insights for CS Enterprise"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "GUID": "749742bf-0d37-4158-a120-33567104deeb",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "Service_Plan_Id": "99340b49-fb81-4b1e-976b-8f2ae8e9394f",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "GUID": "749742bf-0d37-4158-a120-33567104deeb",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "GUID": "749742bf-0d37-4158-a120-33567104deeb",
+ "Service_Plan_Name": "Forms_Pro_Service",
+ "Service_Plan_Id": "67bf4812-f90b-4db9-97e7-c0bbbf7b2d09",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "GUID": "749742bf-0d37-4158-a120-33567104deeb",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "GUID": "749742bf-0d37-4158-a120-33567104deeb",
+ "Service_Plan_Name": "NBENTERPRISE",
+ "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "GUID": "749742bf-0d37-4158-a120-33567104deeb",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "GUID": "749742bf-0d37-4158-a120-33567104deeb",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "GUID": "749742bf-0d37-4158-a120-33567104deeb",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR CUSTOMER SERVICE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_CUSTOMER_SERVICE",
+ "GUID": "749742bf-0d37-4158-a120-33567104deeb",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Field Service Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "D365_FIELD_SERVICE_ATTACH",
+ "GUID": "a36cdaa2-a806-4b6e-9ae0-28dbd993c20e",
+ "Service_Plan_Name": "D365_FIELD_SERVICE_ATTACH",
+ "Service_Plan_Id": "55c9148b-d5f0-4101-b5a0-b2727cfc0916",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service Attach"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Field Service Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "D365_FIELD_SERVICE_ATTACH",
+ "GUID": "a36cdaa2-a806-4b6e-9ae0-28dbd993c20e",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
+ "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_FIELD_SERVICE",
+ "Service_Plan_Id": "8c66ef8a-177f-4c0d-853c-d4f219331d09",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Field Service"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
+ "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "Service_Plan_Name": "Forms_Pro_FS",
+ "Service_Plan_Id": "9c439259-63b0-46cc-a258-72be4313a42d",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Field Service"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
+ "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "Service_Plan_Name": "NBENTERPRISE",
+ "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
+ "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
+ "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
+ "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
+ "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
+ "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
+ "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Field Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_FIELD_SERVICE",
+ "GUID": "c7d15985-e746-4f01-b113-20b575898250",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Financials Business Edition",
+ "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU",
+ "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa",
+ "Service_Plan_Name": "DYN365_FINANCIALS_BUSINESS",
+ "Service_Plan_Id": "920656a2-7dd8-4c83-97b6-a356414dbd36",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Financials Business Edition",
+ "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU",
+ "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Financials Business Edition",
+ "String_Id": "DYN365_FINANCIALS_BUSINESS_SKU",
+ "GUID": "cc13a803-544e-4464-b4e4-6d6169a138fa",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCIALS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Hybrid Connector",
+ "String_Id": "CRM_HYBRIDCONNECTOR",
+ "GUID": "de176c31-616d-4eae-829a-718918d7ec23",
+ "Service_Plan_Name": "CRM_HYBRIDCONNECTOR",
+ "Service_Plan_Id": "0210d5c8-49d2-4dd1-a01b-a91c7c14e0bf",
+ "Service_Plans_Included_Friendly_Names": "CRM Hybrid Connector"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Hybrid Connector",
+ "String_Id": "CRM_HYBRIDCONNECTOR",
+ "GUID": "de176c31-616d-4eae-829a-718918d7ec23",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Additional Application",
+ "String_Id": "DYN365_MARKETING_APPLICATION_ADDON",
+ "GUID": "99c5688b-6c75-4496-876f-07f0fbd69add",
+ "Service_Plan_Name": "DYN365_MARKETING_APPLICATION_ADDON",
+ "Service_Plan_Id": "51cf0638-4861-40c0-8b20-1161ab2f80be",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing Additional Application"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Additional Application",
+ "String_Id": "DYN365_MARKETING_APPLICATION_ADDON",
+ "GUID": "99c5688b-6c75-4496-876f-07f0fbd69add",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 3",
+ "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T3",
+ "GUID": "23053933-0fda-431f-9a5b-a00fd78444c1",
+ "Service_Plan_Name": "DYN365_MARKETING_50K_CONTACT_ADDON",
+ "Service_Plan_Id": "e626a4ec-1ba2-409e-bf75-9bc0bc30cca7",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing 50K Addnl Contacts"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 3",
+ "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T3",
+ "GUID": "23053933-0fda-431f-9a5b-a00fd78444c1",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 5",
+ "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T5",
+ "GUID": "d8eec316-778c-4f14-a7d1-a0aca433b4e7",
+ "Service_Plan_Name": "DYN365_MARKETING_50K_CONTACT_ADDON",
+ "Service_Plan_Id": "e626a4ec-1ba2-409e-bf75-9bc0bc30cca7",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing 50K Addnl Contacts"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Addnl Contacts Tier 5",
+ "String_Id": "DYN365_MARKETING_CONTACT_ADDON_T5",
+ "GUID": "d8eec316-778c-4f14-a7d1-a0aca433b4e7",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Additional Non-Prod Application",
+ "String_Id": "DYN365_MARKETING_SANDBOX_APPLICATION_ADDON",
+ "GUID": "c393e9bd-2335-4b46-8b88-9e2a86a85ec1",
+ "Service_Plan_Name": "DYN365_MARKETING_SANDBOX_APPLICATION_ADDON",
+ "Service_Plan_Id": "1599de10-5250-4c95-acf2-491f74edce48",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Marketing Sandbox Application AddOn"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Attach",
+ "String_Id": "DYN365_MARKETING_APP_ATTACH",
+ "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29",
+ "Service_Plan_Name": "DYN365_MARKETING_APP",
+ "Service_Plan_Id": "a3a4fa10-5092-401a-af30-0462a95a7ac8",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Attach",
+ "String_Id": "DYN365_MARKETING_APP_ATTACH",
+ "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29",
+ "Service_Plan_Name": "Forms_Pro_Marketing_App",
+ "Service_Plan_Id": "22b657cf-0a9e-467b-8a91-5e31f21bc570",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Marketing Application"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Attach",
+ "String_Id": "DYN365_MARKETING_APP_ATTACH",
+ "GUID": "85430fb9-02e8-48be-9d7e-328beb41fa29",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing USL",
+ "String_Id": "D365_MARKETING_USER",
+ "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12",
+ "Service_Plan_Name": "DYN365_MARKETING_MSE_USER",
+ "Service_Plan_Id": "2824c69a-1ac5-4397-8592-eae51cb8b581",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing MSE User"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing USL",
+ "String_Id": "D365_MARKETING_USER",
+ "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12",
+ "Service_Plan_Name": "DYN365_MARKETING_USER",
+ "Service_Plan_Id": "5d7a6abc-eebd-46ab-96e1-e4a2f54a2248",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Marketing USL"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing USL",
+ "String_Id": "D365_MARKETING_USER",
+ "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12",
+ "Service_Plan_Name": "Forms_Pro_Marketing",
+ "Service_Plan_Id": "76366ba0-d230-47aa-8087-b6d55dae454f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Marketing"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing USL",
+ "String_Id": "D365_MARKETING_USER",
+ "GUID": "4b32a493-9a67-4649-8eb9-9fc5a5f75c12",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
+ "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_P1",
+ "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 CUSTOMER ENGAGEMENT PLAN"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
+ "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
+ "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
+ "Service_Plan_Name": "NBENTERPRISE",
+ "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
+ "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
+ "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
+ "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales and Customer Service Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES_CUSTOMERSERVICE",
+ "GUID": "8edc2cf8-6438-4fa9-b6e3-aa1660c640cc",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES",
+ "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_SALES",
+ "Service_Plan_Id": "2da8e897-7791-486b-b08f-cc63c8129df7",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SALES"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES",
+ "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES",
+ "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
+ "Service_Plan_Name": "NBENTERPRISE",
+ "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT - SERVICE DISCONTINUATION"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES",
+ "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES",
+ "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES",
+ "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Sales Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_SALES",
+ "GUID": "1e1a282c-9c54-43a2-9310-98ef728faace",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox",
+ "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox",
+ "GUID": "494721b8-1f30-4315-aba6-70ca169358d9",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_P1",
+ "Service_Plan_Id": "d56f3deb-50d8-465a-bedb-f079817ccac1",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Customer Engagement Plan"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox",
+ "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox",
+ "GUID": "494721b8-1f30-4315-aba6-70ca169358d9",
+ "Service_Plan_Name": "Forms_Pro_Service",
+ "Service_Plan_Id": "67bf4812-f90b-4db9-97e7-c0bbbf7b2d09",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Customer Service Enterprise"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox",
+ "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox",
+ "GUID": "494721b8-1f30-4315-aba6-70ca169358d9",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox",
+ "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox",
+ "GUID": "494721b8-1f30-4315-aba6-70ca169358d9",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox",
+ "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox",
+ "GUID": "494721b8-1f30-4315-aba6-70ca169358d9",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales, Field Service and Customer Service Partner Sandbox",
+ "String_Id": "Dynamics_365_Sales_Field_Service_and_Customer_Service_Partner_Sandbox",
+ "GUID": "494721b8-1f30-4315-aba6-70ca169358d9",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "DYN365_SALES_INSIGHTS",
+ "Service_Plan_Id": "fedc185f-0711-4cc0-80ed-0a92da1a8384",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Sales (Embedded)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate",
+ "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium with Power Automate"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial",
+ "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "Power_Pages_Internal_User",
+ "Service_Plan_Id": "60bf28f9-2b70-4522-96f7-335f5e06c941",
+ "Service_Plans_Included_Friendly_Names": "Power Pages Internal User"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "Forms_Pro_SalesEnt",
+ "Service_Plan_Id": "8839ef0e-91f1-4085-b485-62e06e7c7987",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Sales Enterprise"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium",
+ "String_Id": "DYN365_SALES_PREMIUM",
+ "GUID": "2edaa1dc-966d-4475-93d6-8ee8dfd96877",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_SALES",
+ "Service_Plan_Id": "2da8e897-7791-486b-b08f-cc63c8129df7",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Business Edition",
+ "String_Id": "DYN365_BUSINESS_MARKETING",
+ "GUID": "238e2f8d-e429-4035-94db-6926be4ffe7b",
+ "Service_Plan_Name": "DYN365_BUSINESS_Marketing",
+ "Service_Plan_Id": "393a0c96-9ba1-4af0-8975-fa2f853a25ac",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Marketing"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Marketing Business Edition",
+ "String_Id": "DYN365_BUSINESS_MARKETING",
+ "GUID": "238e2f8d-e429-4035-94db-6926be4ffe7b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Regulatory Service - Enterprise Edition Trial",
+ "String_Id": "DYN365_REGULATORY_SERVICE",
+ "GUID": "7ed4877c-0863-4f69-9187-245487128d4f",
+ "Service_Plan_Name": "DYN365_REGULATORY_SERVICE",
+ "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Finance and Operations Enterprise edition - Regulatory Service"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Regulatory Service - Enterprise Edition Trial",
+ "String_Id": "DYN365_REGULATORY_SERVICE",
+ "GUID": "7ed4877c-0863-4f69-9187-245487128d4f",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial",
+ "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial",
+ "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71",
+ "Service_Plan_Name": "CUSTOMER_VOICE_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "dbe07046-af68-4861-a20d-1c8cbda9194f",
+ "Service_Plans_Included_Friendly_Names": "Customer Voice for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial",
+ "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial",
+ "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71",
+ "Service_Plan_Name": "DYN365_SALES_ENTERPRISE_VIRAL_TRIAL",
+ "Service_Plan_Id": "7f636c80-0961-41b2-94da-9642ccf02de0",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Sales Enterprise vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial",
+ "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial",
+ "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71",
+ "Service_Plan_Name": "DYN365_SALES_INSIGHTS_VIRAL_TRIAL",
+ "Service_Plan_Id": "456747c0-cf1e-4b0d-940f-703a01b964cc",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Sales Insights vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial",
+ "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial",
+ "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial",
+ "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial",
+ "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71",
+ "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Premium Viral Trial",
+ "String_Id": "Dynamics_365_Sales_Premium_Viral_Trial",
+ "GUID": "6ec92958-3cc1-49db-95bd-bc6b3798df71",
+ "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 For Sales Professional",
+ "String_Id": "D365_SALES_PRO",
+ "GUID": "be9f9771-1c64-4618-9907-244325141096",
+ "Service_Plan_Name": "DYN365_SALES_PRO",
+ "Service_Plan_Id": "88d83950-ff78-4e85-aa66-abfc787f8090",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 For Sales Professional",
+ "String_Id": "D365_SALES_PRO",
+ "GUID": "be9f9771-1c64-4618-9907-244325141096",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 For Sales Professional",
+ "String_Id": "D365_SALES_PRO",
+ "GUID": "be9f9771-1c64-4618-9907-244325141096",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 For Sales Professional",
+ "String_Id": "D365_SALES_PRO",
+ "GUID": "be9f9771-1c64-4618-9907-244325141096",
+ "Service_Plan_Name": "POWERAPPS_SALES_PRO",
+ "Service_Plan_Id": "6f9f70ce-138d-49f8-bb8b-2e701b7dde75",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Sales Pro"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 For Sales Professional",
+ "String_Id": "D365_SALES_PRO",
+ "GUID": "be9f9771-1c64-4618-9907-244325141096",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "f944d685-f762-4371-806d-a1f48e5bea13",
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 For Sales Professional",
+ "String_Id": "D365_SALES_PRO",
+ "GUID": "be9f9771-1c64-4618-9907-244325141096",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)Dynamics 365 for Sales Pro Attach"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 For Sales Professional Trial",
+ "String_Id": "D365_SALES_PRO_IW",
+ "GUID": "9c7bff7a-3715-4da7-88d3-07f57f8d0fb6",
+ "Service_Plan_Name": "D365_SALES_PRO_IW",
+ "Service_Plan_Id": "73f205fc-6b15-47a5-967e-9e64fdf72d0a",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional Trial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 For Sales Professional Trial",
+ "String_Id": "D365_SALES_PRO_IW",
+ "GUID": "9c7bff7a-3715-4da7-88d3-07f57f8d0fb6",
+ "Service_Plan_Name": "D365_SALES_PRO_IW_Trial",
+ "Service_Plan_Id": "db39a47e-1f4f-462b-bf5b-2ec471fb7b88",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Professional Trial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "D365_SALES_PRO_ATTACH",
+ "GUID": "245e6bf9-411e-481e-8611-5c08595e2988",
+ "Service_Plan_Name": "D365_SALES_PRO_ATTACH",
+ "Service_Plan_Id": "065f3c64-0649-4ec7-9f47-ef5cf134c751",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Pro Attach"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Professional Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "D365_SALES_PRO_ATTACH",
+ "GUID": "245e6bf9-411e-481e-8611-5c08595e2988",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Supply Chain Management",
+ "String_Id": "DYN365_SCM",
+ "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
+ "Service_Plan_Name": "DYN365_CDS_SUPPLYCHAINMANAGEMENT",
+ "Service_Plan_Id": "b6a8b974-2956-4e14-ae81-f0384c363528",
+ "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR DYNAMICS 365 SUPPLY CHAIN MANAGEMENT"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Supply Chain Management",
+ "String_Id": "DYN365_SCM",
+ "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
+ "Service_Plan_Name": "DYN365_REGULATORY_SERVICE",
+ "Service_Plan_Id": "c7657ae3-c0b0-4eed-8c1d-6a7967bd9c65",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR FINANCE AND OPERATIONS ENTERPRISE EDITION - REGULATORY SERVICE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Supply Chain Management",
+ "String_Id": "DYN365_SCM",
+ "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
+ "Service_Plan_Name": "D365_SCM",
+ "Service_Plan_Id": "1224eae4-0d91-474a-8a52-27ec96a63fe7",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR SUPPLY CHAIN MANAGEMENT"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Supply Chain Management",
+ "String_Id": "DYN365_SCM",
+ "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Supply Chain Management",
+ "String_Id": "DYN365_SCM",
+ "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Supply Chain Management",
+ "String_Id": "DYN365_SCM",
+ "GUID": "f2e48cb3-9da0-42cd-8464-4a54ce198ad0",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Talent",
+ "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
+ "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
+ "Service_Plan_Name": "DYN365_CDS_DYN_APPS",
+ "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Talent",
+ "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
+ "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
+ "Service_Plan_Name": "Dynamics_365_Hiring_Free_PLAN",
+ "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Attract"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Talent",
+ "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
+ "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
+ "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN",
+ "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Onboard"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Talent",
+ "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
+ "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
+ "Service_Plan_Name": "Dynamics_365_for_HCM_Trial",
+ "Service_Plan_Id": "5ed38b64-c3b7-4d9f-b1cd-0de18c9c4331",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for HCM Trial"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Talent",
+ "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
+ "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Talent",
+ "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
+ "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Flow for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Talent",
+ "String_Id": "SKU_Dynamics_365_for_HCM_Trial",
+ "GUID": "3a256e9a-15b6-4092-b0dc-82993f4debc6",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "PowerApps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Talent: Attract",
+ "String_Id": "Dynamics_365_Hiring_SKU",
+ "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d",
+ "Service_Plan_Name": "DYN365_CDS_DYN_APPS",
+ "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Talent: Attract",
+ "String_Id": "Dynamics_365_Hiring_SKU",
+ "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d",
+ "Service_Plan_Name": "Dynamics_365_Hiring_Free_PLAN",
+ "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Talent: Attract"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Talent: Attract",
+ "String_Id": "Dynamics_365_Hiring_SKU",
+ "GUID": "e561871f-74fa-4f02-abee-5b0ef54dd36d",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
+ "Service_Plan_Name": "DYN365_Enterprise_Talent_Attract_TeamMember",
+ "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ATTRACT EXPERIENCE TEAM MEMBER"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
+ "Service_Plan_Name": "DYN365_Enterprise_Talent_Onboard_TeamMember",
+ "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ONBOARD EXPERIENCE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "Service_Plan_Id": "6a54b05e-4fab-40e7-9828-428db3b336fa",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TEAM MEMBERS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
+ "Service_Plan_Name": "DYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS",
+ "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR OPERATIONS TEAM MEMBERS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
+ "Service_Plan_Name": "Dynamics_365_for_Retail_Team_members",
+ "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL TEAM MEMBERS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
+ "Service_Plan_Name": "Dynamics_365_for_Talent_Team_members",
+ "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT TEAM MEMBERS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
+ "Service_Plan_Name": "FLOW_DYN_TEAM",
+ "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
+ "Service_Plan_Name": "POWERAPPS_DYN_TEAM",
+ "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 for Team Members Enterprise Edition",
+ "String_Id": "DYN365_ENTERPRISE_TEAM_MEMBERS",
+ "GUID": "8e7a3d30-d97d-43ab-837c-d7701cef83dc",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Guides",
+ "String_Id": "GUIDES_USER",
+ "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60",
+ "Service_Plan_Name": "DYN365_CDS_GUIDES",
+ "Service_Plan_Id": "1315ade1-0410-450d-b8e3-8050e6da320f",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Guides",
+ "String_Id": "GUIDES_USER",
+ "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60",
+ "Service_Plan_Name": "GUIDES",
+ "Service_Plan_Id": "0b2c029c-dca0-454a-a336-887285d6ef07",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Guides"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Guides",
+ "String_Id": "GUIDES_USER",
+ "GUID": "0a389a77-9850-4dc4-b600-bc66fdfefc60",
+ "Service_Plan_Name": "POWERAPPS_GUIDES",
+ "Service_Plan_Id": "816971f4-37c5-424a-b12b-b56881f402e7",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Guides"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Operations - Device",
+ "String_Id": "Dynamics_365_for_Operations_Devices",
+ "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd",
+ "Service_Plan_Name": "DYN365_RETAIL_DEVICE",
+ "Service_Plan_Id": "ceb28005-d758-4df7-bb97-87a617b93d6c",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Retail Device"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Operations - Device",
+ "String_Id": "Dynamics_365_for_Operations_Devices",
+ "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd",
+ "Service_Plan_Name": "Dynamics_365_for_OperationsDevices",
+ "Service_Plan_Id": "2c9fb43e-915a-4d61-b6ca-058ece89fd66",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Devices"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Operations - Device",
+ "String_Id": "Dynamics_365_for_Operations_Devices",
+ "GUID": "3bbd44ed-8a70-4c07-9088-6232ddbd5ddd",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing",
+ "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU",
+ "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7",
+ "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier2",
+ "Service_Plan_Id": "d8ba6fb2-c6b1-4f07-b7c8-5f2745e36b54",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations non-production multi-box instance for standard acceptance testing (Tier 2)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 2:Standard Acceptance Testing",
+ "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier2_SKU",
+ "GUID": "e485d696-4c87-4aac-bf4a-91b2fb6f0fa7",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing",
+ "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU",
+ "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06",
+ "Service_Plan_Name": "Dynamics_365_for_Operations_Sandbox_Tier4",
+ "Service_Plan_Id": "f6b5efb1-1813-426f-96d0-9b4f7438714f",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Operations Enterprise Edition - Sandbox Tier 4:Standard Performance Testing"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Operations - Sandbox Tier 4:Standard Performance Testing",
+ "String_Id": "Dynamics_365_for_Operations_Sandbox_Tier4_SKU",
+ "GUID": "f7ad4bca-7221-452c-bdb6-3e6089f25e06",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 P1 Tria for Information Workers",
+ "String_Id": "DYN365_ENTERPRISE_P1_IW",
+ "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_P1_IW",
+ "Service_Plan_Id": "056a5f80-b4e0-4983-a8be-7ad254a113c9",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 P1 TRIAL FOR INFORMATION WORKERS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 P1 Tria for Information Workers",
+ "String_Id": "DYN365_ENTERPRISE_P1_IW",
+ "GUID": "338148b6-1b11-4102-afb9-f92b6cdc0f8d",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Remote Assist",
+ "String_Id": "MICROSOFT_REMOTE_ASSIST",
+ "GUID": "7a551360-26c4-4f61-84e6-ef715673e083",
+ "Service_Plan_Name": "CDS_REMOTE_ASSIST",
+ "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Remote Assist",
+ "String_Id": "MICROSOFT_REMOTE_ASSIST",
+ "GUID": "7a551360-26c4-4f61-84e6-ef715673e083",
+ "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST",
+ "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Remote Assist",
+ "String_Id": "MICROSOFT_REMOTE_ASSIST",
+ "GUID": "7a551360-26c4-4f61-84e6-ef715673e083",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens",
+ "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS",
+ "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89",
+ "Service_Plan_Name": "CDS_REMOTE_ASSIST",
+ "Service_Plan_Id": "0850ebb5-64ee-4d3a-a3e1-5a97213653b5",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Remote Assist"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens",
+ "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS",
+ "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89",
+ "Service_Plan_Name": "MICROSOFT_REMOTE_ASSIST",
+ "Service_Plan_Id": "4f4c7800-298a-4e22-8867-96b17850d4dd",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Remote Assist"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Remote Assist HoloLens",
+ "String_Id": "MICROSOFT_REMOTE_ASSIST_HOLOLENS",
+ "GUID": "e48328a2-8e98-4484-a70f-a99f8ac9ec89",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "D365_SALES_ENT_ATTACH",
+ "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323",
+ "Service_Plan_Name": "D365_SALES_ENT_ATTACH",
+ "Service_Plan_Id": "3ae52229-572e-414f-937c-ff35a87d4f29",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 for Sales Enterprise Attach"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Sales Enterprise Attach to Qualifying Dynamics 365 Base Offer",
+ "String_Id": "D365_SALES_ENT_ATTACH",
+ "GUID": "5b22585d-1b71-4c6b-b6ec-160b1a9c2323",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Talent: Onboard",
+ "String_Id": "DYNAMICS_365_ONBOARDING_SKU",
+ "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0",
+ "Service_Plan_Name": "DYN365_CDS_DYN_APPS",
+ "Service_Plan_Id": "2d925ad8-2479-4bd8-bb76-5b80f1d48935",
+ "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Talent: Onboard",
+ "String_Id": "DYNAMICS_365_ONBOARDING_SKU",
+ "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0",
+ "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN",
+ "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Talent: Onboard",
+ "String_Id": "DYNAMICS_365_ONBOARDING_SKU",
+ "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0",
+ "Service_Plan_Name": "Dynamics_365_Talent_Onboard",
+ "Service_Plan_Id": "048a552e-c849-4027-b54c-4c7ead26150a",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Talent: Onboard",
+ "String_Id": "DYNAMICS_365_ONBOARDING_SKU",
+ "GUID": "b56e7ccc-d5c7-421f-a23b-5c18bdbad7c0",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "DYNAMICS_365_FOR_RETAIL_TEAM_MEMBERS",
+ "Service_Plan_Id": "c0454a3d-32b5-4740-b090-78c32f48f0ad",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL TEAM MEMBERS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_TALENT_ATTRACT_TEAMMEMBER",
+ "Service_Plan_Id": "643d201a-9884-45be-962a-06ba97062e5e",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ATTRACT EXPERIENCE TEAM MEMBER"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "DYN365_ENTERPRISE_TALENT_ONBOARD_TEAMMEMBER",
+ "Service_Plan_Id": "f2f49eef-4b3f-4853-809a-a055c6103fe0",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT - ONBOARD EXPERIENCE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "DYNAMICS_365_FOR_TALENT_TEAM_MEMBERS",
+ "Service_Plan_Id": "d5156635-0704-4f66-8803-93258f8b2678",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT TEAM MEMBERS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "DYN365_TEAM_MEMBERS",
+ "Service_Plan_Id": "4092fdb5-8d81-41d3-be76-aaba4074530b",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 TEAM MEMBERS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "DYNAMICS_365_FOR_OPERATIONS_TEAM_MEMBERS",
+ "Service_Plan_Id": "f5aa7b45-8a36-4cd1-bc37-5d06dea98645",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR OPERATIONS TEAM MEMBERS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "FLOW_DYN_TEAM",
+ "Service_Plan_Id": "1ec58c70-f69c-486a-8109-4b87ce86e449",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "POWERAPPS_DYN_TEAM",
+ "Service_Plan_Id": "52e619e2-2730-439a-b0d3-d09ab7e8b705",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 Team Members",
+ "String_Id": "DYN365_TEAM_MEMBERS",
+ "GUID": "7ac9fe77-66b7-4e5e-9e46-10eed1cff547",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition",
+ "String_Id": "Dynamics_365_for_Operations",
+ "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
+ "Service_Plan_Name": "DDYN365_CDS_DYN_P2",
+ "Service_Plan_Id": "d1142cfd-872e-4e77-b6ff-d98ec5a51f66",
+ "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition",
+ "String_Id": "Dynamics_365_for_Operations",
+ "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
+ "Service_Plan_Name": "DYN365_TALENT_ENTERPRISE",
+ "Service_Plan_Id": "65a1ebf4-6732-4f00-9dcb-3d115ffdeecd",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition",
+ "String_Id": "Dynamics_365_for_Operations",
+ "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
+ "Service_Plan_Name": "Dynamics_365_for_Operations",
+ "Service_Plan_Id": "95d2cd7b-1007-484b-8595-5e97e63fe189",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR_OPERATIONS"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition",
+ "String_Id": "Dynamics_365_for_Operations",
+ "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
+ "Service_Plan_Name": "Dynamics_365_for_Retail",
+ "Service_Plan_Id": "a9e39199-8369-444b-89c1-5fe65ec45665",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR RETAIL"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition",
+ "String_Id": "Dynamics_365_for_Operations",
+ "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
+ "Service_Plan_Name": "DYNAMICS_365_HIRING_FREE_PLAN",
+ "Service_Plan_Id": "f815ac79-c5dd-4bcc-9b78-d97f7b817d0d",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 HIRING FREE PLAN"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition",
+ "String_Id": "Dynamics_365_for_Operations",
+ "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
+ "Service_Plan_Name": "Dynamics_365_Onboarding_Free_PLAN",
+ "Service_Plan_Id": "300b8114-8555-4313-b861-0c115d820f50",
+ "Service_Plans_Included_Friendly_Names": "DYNAMICS 365 FOR TALENT: ONBOARD"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition",
+ "String_Id": "Dynamics_365_for_Operations",
+ "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
+ "Service_Plan_Name": "FLOW_DYN_P2",
+ "Service_Plan_Id": "b650d915-9886-424b-a08d-633cede56f57",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 36"
+ },
+ {
+ "Product_Display_Name": "Dynamics 365 UNF OPS Plan ENT Edition",
+ "String_Id": "Dynamics_365_for_Operations",
+ "GUID": "ccba3cfe-71ef-423a-bd87-b6df3dce59a9",
+ "Service_Plan_Name": "POWERAPPS_DYN_P2",
+ "Service_Plan_Id": "0b03f40b-c404-40c3-8651-2aceb74365fa",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty",
+ "String_Id": "EMS_EDU_FACULTY",
+ "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty",
+ "String_Id": "EMS_EDU_FACULTY",
+ "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952",
+ "Service_Plan_Name": "AAD_EDU",
+ "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory for Education"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty",
+ "String_Id": "EMS_EDU_FACULTY",
+ "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty",
+ "String_Id": "EMS_EDU_FACULTY",
+ "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty",
+ "String_Id": "EMS_EDU_FACULTY",
+ "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty",
+ "String_Id": "EMS_EDU_FACULTY",
+ "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty",
+ "String_Id": "EMS_EDU_FACULTY",
+ "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty",
+ "String_Id": "EMS_EDU_FACULTY",
+ "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty",
+ "String_Id": "EMS_EDU_FACULTY",
+ "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security A3 for Faculty",
+ "String_Id": "EMS_EDU_FACULTY",
+ "GUID": "aedfac18-56b8-45e3-969b-53edb4ba4952",
+ "Service_Plan_Name": "WINDOWS_STORE",
+ "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d",
+ "Service_Plans_Included_Friendly_Names": "Windows Store Service"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E3",
+ "String_Id": "EMS",
+ "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E3",
+ "String_Id": "EMS",
+ "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E3",
+ "String_Id": "EMS",
+ "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "CLOUD APP SECURITY DISCOVERY"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E3",
+ "String_Id": "EMS",
+ "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E3",
+ "String_Id": "EMS",
+ "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E3",
+ "String_Id": "EMS",
+ "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E3",
+ "String_Id": "EMS",
+ "GUID": "efccb6f7-5641-4e0e-bd10-b4976e1bf68e",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E5",
+ "String_Id": "EMSPREMIUM",
+ "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E5",
+ "String_Id": "EMSPREMIUM",
+ "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P2"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E5",
+ "String_Id": "EMSPREMIUM",
+ "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P1"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E5",
+ "String_Id": "EMSPREMIUM",
+ "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "AZURE INFORMATION PROTECTION PREMIUM P2"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E5",
+ "String_Id": "EMSPREMIUM",
+ "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E5",
+ "String_Id": "EMSPREMIUM",
+ "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E5",
+ "String_Id": "EMSPREMIUM",
+ "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE MULTI-FACTOR AUTHENTICATION"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E5",
+ "String_Id": "EMSPREMIUM",
+ "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT CLOUD APP SECURITY"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E5",
+ "String_Id": "EMSPREMIUM",
+ "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR IDENTITY"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security E5",
+ "String_Id": "EMSPREMIUM",
+ "GUID": "b05e124f-c7cc-45a0-a6aa-8cf78c946968",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
+ "String_Id": "EMS_GOV",
+ "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
+ "String_Id": "EMS_GOV",
+ "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
+ "String_Id": "EMS_GOV",
+ "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
+ "String_Id": "EMS_GOV",
+ "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
+ "String_Id": "EMS_GOV",
+ "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
+ "String_Id": "EMS_GOV",
+ "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G3 GCC",
+ "String_Id": "EMS_GOV",
+ "GUID": "c793db86-5237-494e-9b11-dcd4877c2c8c",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
+ "String_Id": "EMSPREMIUM_GOV",
+ "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
+ "String_Id": "EMSPREMIUM_GOV",
+ "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
+ "String_Id": "EMSPREMIUM_GOV",
+ "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
+ "String_Id": "EMSPREMIUM_GOV",
+ "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
+ "String_Id": "EMSPREMIUM_GOV",
+ "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
+ "String_Id": "EMSPREMIUM_GOV",
+ "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE)",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
+ "String_Id": "EMSPREMIUM_GOV",
+ "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
+ "String_Id": "EMSPREMIUM_GOV",
+ "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
+ "String_Id": "EMSPREMIUM_GOV",
+ "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Enterprise Mobility + Security G5 GCC",
+ "String_Id": "EMSPREMIUM_GOV",
+ "GUID": "8a180c2b-f4cf-4d44-897c-3d32acc4a60b",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)",
+ "String_Id": "EOP_ENTERPRISE_PREMIUM",
+ "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640",
+ "Service_Plan_Name": "EOP_ENTERPRISE_PREMIUM",
+ "Service_Plan_Id": "75badc48-628e-4446-8460-41344d73abd6",
+ "Service_Plans_Included_Friendly_Names": "Exchange Enterprise CAL Services (EOP DLP)"
+ },
+ {
+ "Product_Display_Name": "Exchange Enterprise CAL Services (EOP DLP)",
+ "String_Id": "EOP_ENTERPRISE_PREMIUM",
+ "GUID": "e8ecdf70-47a8-4d39-9d15-093624b7f640",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1)",
+ "String_Id": "EXCHANGESTANDARD",
+ "GUID": "4b9405b0-7788-4568-add1-99614e613b69",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1)",
+ "String_Id": "EXCHANGESTANDARD",
+ "GUID": "4b9405b0-7788-4568-add1-99614e613b69",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1)",
+ "String_Id": "EXCHANGESTANDARD",
+ "GUID": "4b9405b0-7788-4568-add1-99614e613b69",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1) for Alumni with Yammer",
+ "String_Id": "EXCHANGESTANDARD_ALUMNI",
+ "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1) for Alumni with Yammer",
+ "String_Id": "EXCHANGESTANDARD_ALUMNI",
+ "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1) for Alumni with Yammer",
+ "String_Id": "EXCHANGESTANDARD_ALUMNI",
+ "GUID": "aa0f9eb7-eff2-4943-8424-226fb137fcad",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1) for Students",
+ "String_Id": "EXCHANGESTANDARD_STUDENT",
+ "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1) for Students",
+ "String_Id": "EXCHANGESTANDARD_STUDENT",
+ "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1) for Students",
+ "String_Id": "EXCHANGESTANDARD_STUDENT",
+ "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1) for Students",
+ "String_Id": "EXCHANGESTANDARD_STUDENT",
+ "GUID": "ad2fe44a-915d-4e2b-ade1-6766d50a9d9c",
+ "Service_Plan_Name": "RMS_S_BASIC",
+ "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1) for GCC",
+ "String_Id": "EXCHANGESTANDARD_GOV",
+ "GUID": "f37d5ebf-4bf1-4aa2-8fa3-50c51059e983",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD_GOV",
+ "Service_Plan_Id": "e9b4930a-925f-45e2-ac2a-3f7788ca6fdd",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1) for Government"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 1) for GCC",
+ "String_Id": "EXCHANGESTANDARD_GOV",
+ "GUID": "f37d5ebf-4bf1-4aa2-8fa3-50c51059e983",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 2)",
+ "String_Id": "EXCHANGEENTERPRISE",
+ "GUID": "19ec0d23-8335-4cbd-94ac-6050e30712fa",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 2) for Faculty",
+ "String_Id": "EXCHANGEENTERPRISE_FACULTY",
+ "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 2) for Faculty",
+ "String_Id": "EXCHANGEENTERPRISE_FACULTY",
+ "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 2) for Faculty",
+ "String_Id": "EXCHANGEENTERPRISE_FACULTY",
+ "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Exchange Online (Plan 2) for Faculty",
+ "String_Id": "EXCHANGEENTERPRISE_FACULTY",
+ "GUID": "0b7b15a8-7fd2-4964-bb96-5a566d4e3c15",
+ "Service_Plan_Name": "RMS_S_BASIC",
+ "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ },
+ {
+ "Product_Display_Name": "Exchange Online Archiving for Exchange Online",
+ "String_Id": "EXCHANGEARCHIVE_ADDON",
+ "GUID": "ee02fd1b-340e-4a4b-b355-4a514e4c8943",
+ "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON",
+ "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Exchange Online Archiving for Exchange Server",
+ "String_Id": "EXCHANGEARCHIVE",
+ "GUID": "90b5e015-709a-4b8b-b08e-3200f994494c",
+ "Service_Plan_Name": "EXCHANGE_S_ARCHIVE",
+ "Service_Plan_Id": "da040e0a-b393-4bea-bb76-928b3fa1cf5a",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE ARCHIVING FOR EXCHANGE SERVER"
+ },
+ {
+ "Product_Display_Name": "Exchange Online Essentials (ExO P1 Based)",
+ "String_Id": "EXCHANGEESSENTIALS",
+ "GUID": "7fc0182e-d107-4556-8329-7caaa511197b",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
+ },
+ {
+ "Product_Display_Name": "Exchange Online Essentials",
+ "String_Id": "EXCHANGE_S_ESSENTIALS",
+ "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b",
+ "Service_Plan_Name": "EXCHANGE_S_ESSENTIALS",
+ "Service_Plan_Id": "1126bef5-da20-4f07-b45e-ad25d2581aa8",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ESSENTIALS"
+ },
+ {
+ "Product_Display_Name": "Exchange Online Essentials",
+ "String_Id": "EXCHANGE_S_ESSENTIALS",
+ "GUID": "e8f81a67-bd96-4074-b108-cf193eb9433b",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)"
+ },
+ {
+ "Product_Display_Name": "Exchange Online Kiosk",
+ "String_Id": "EXCHANGEDESKLESS",
+ "GUID": "80b2d799-d2ba-4d2a-8842-fb0d0f3a4b82",
+ "Service_Plan_Name": "EXCHANGE_S_DESKLESS",
+ "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE KIOSK"
+ },
+ {
+ "Product_Display_Name": "Exchange Online POP",
+ "String_Id": "EXCHANGETELCO",
+ "GUID": "cb0a98a8-11bc-494c-83d9-c1b1ac65327e",
+ "Service_Plan_Name": "EXCHANGE_B_STANDARD",
+ "Service_Plan_Id": "90927877-dcff-4af6-b346-2332c0b15bb7",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE POP"
+ },
+ {
+ "Product_Display_Name": "Exchange Online Protection",
+ "String_Id": "EOP_ENTERPRISE",
+ "GUID": "45a2423b-e884-448d-a831-d9e139c52d2f",
+ "Service_Plan_Name": "EOP_ENTERPRISE",
+ "Service_Plan_Id": "326e2b78-9d27-42c9-8509-46c827743a17",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Protection"
+ },
+ {
+ "Product_Display_Name": "Intune",
+ "String_Id": "INTUNE_A",
+ "GUID": "061f9ace-7d42-4136-88ac-31dc755f143f",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
+ },
+ {
+ "Product_Display_Name": "Intune for Education",
+ "String_Id": "INTUNE_EDU",
+ "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Intune for Education",
+ "String_Id": "INTUNE_EDU",
+ "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7",
+ "Service_Plan_Name": "AAD_EDU",
+ "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory for Education"
+ },
+ {
+ "Product_Display_Name": "Intune for Education",
+ "String_Id": "INTUNE_EDU",
+ "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Intune for Education",
+ "String_Id": "INTUNE_EDU",
+ "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
+ },
+ {
+ "Product_Display_Name": "Intune for Education",
+ "String_Id": "INTUNE_EDU",
+ "GUID": "d9d89b70-a645-4c24-b041-8d3cb1884ec7",
+ "Service_Plan_Name": "WINDOWS_STORE",
+ "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d",
+ "Service_Plans_Included_Friendly_Names": "Windows Store Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft Dynamics AX7 User Trial",
+ "String_Id": "AX7_USER_TRIAL",
+ "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0",
+ "Service_Plan_Name": "ERP_TRIAL_INSTANCE",
+ "Service_Plan_Id": "e2f705fd-2468-4090-8c58-fad6e6b1e724",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 Operations Trial Environment"
+ },
+ {
+ "Product_Display_Name": "Microsoft Dynamics AX7 User Trial",
+ "String_Id": "AX7_USER_TRIAL",
+ "GUID": "fcecd1f9-a91e-488d-a918-a96cdb6ce2b0",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication",
+ "String_Id": "MFA_STANDALONE",
+ "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Azure Multi-Factor Authentication",
+ "String_Id": "MFA_STANDALONE",
+ "GUID": "cb2020b1-d8f6-41c0-9acd-8ff3d6d7831b",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)",
+ "String_Id": "THREAT_INTELLIGENCE",
+ "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)",
+ "String_Id": "THREAT_INTELLIGENCE",
+ "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2)",
+ "String_Id": "THREAT_INTELLIGENCE",
+ "GUID": "3dd6cf57-d688-4eed-ba52-9e40b5468c3e",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A1",
+ "String_Id": "M365EDU_A1",
+ "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb",
+ "Service_Plan_Name": "AAD_EDU",
+ "Service_Plan_Id": "3a3976ce-de18-4a87-a78e-5e9245e252df",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A1",
+ "String_Id": "M365EDU_A1",
+ "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Intune for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A1",
+ "String_Id": "M365EDU_A1",
+ "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A1",
+ "String_Id": "M365EDU_A1",
+ "GUID": "b17653a4-2443-4e8c-a550-18249dda78bb",
+ "Service_Plan_Name": "WINDOWS_STORE",
+ "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d",
+ "Service_Plans_Included_Friendly_Names": "Windows Store Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "CDS_O365_P2",
+ "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "MDE_LITE",
+ "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
+ "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
+ "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Faculty",
+ "String_Id": "M365EDU_A3_FACULTY",
+ "GUID": "4b590615-0888-425a-a965-b3bf7789848d",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
+ "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "CDS_O365_P2",
+ "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "MDE_LITE",
+ "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
+ "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
+ "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for Students",
+ "String_Id": "M365EDU_A3_STUDENT",
+ "GUID": "7cfd9a2b-e110-4c39-bf20-c6a3f36a3121",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
+ "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
+ "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
+ "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING",
+ "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086",
+ "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT",
+ "GUID": "18250162-5d87-4436-a834-d795c15c80f3",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty",
+ "String_Id": "Microsoft 365 A3 Suite features for faculty",
+ "GUID": "32a0e471-8a27-4167-b24f-941559912425",
+ "Service_Plan_Name": "MDE_LITE",
+ "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty",
+ "String_Id": "Microsoft 365 A3 Suite features for faculty",
+ "GUID": "32a0e471-8a27-4167-b24f-941559912425",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1 for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 Suite features for faculty",
+ "String_Id": "Microsoft 365 A3 Suite features for faculty",
+ "GUID": "32a0e471-8a27-4167-b24f-941559912425",
+ "Service_Plan_Name": "REMOTE_HELP",
+ "Service_Plan_Id": "a4c6cf29-1168-4076-ba5c-e8fe0e62b17e",
+ "Service_Plans_Included_Friendly_Names": "Remote help"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended",
+ "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
+ "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
+ "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING",
+ "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086",
+ "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A3 - Unattended License for students use benefit",
+ "String_Id": "M365EDU_A3_STUUSEBNFT_RPA1",
+ "GUID": "1aa94593-ca12-4254-a738-81a5972958e8",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_3",
+ "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
+ "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
+ "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
+ "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Faculty",
+ "String_Id": "M365EDU_A5_FACULTY",
+ "GUID": "e97c048c-37a4-45fb-ab50-922fbf07a370",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_3",
+ "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
+ "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
+ "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
+ "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for Students",
+ "String_Id": "M365EDU_A5_STUDENT",
+ "GUID": "46c119d4-0379-4a9d-85e4-97c66d3f909e",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
+ "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
+ "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING",
+ "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086",
+ "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 for students use benefit",
+ "String_Id": "M365EDU_A5_STUUSEBNFT",
+ "GUID": "31d57bc7-3a05-4867-ab53-97a17835a411",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty",
+ "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY",
+ "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty",
+ "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY",
+ "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty",
+ "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY",
+ "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty",
+ "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY",
+ "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty",
+ "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY",
+ "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 Suite features for faculty",
+ "String_Id": "M365_A5_SUITE_COMPONENTS_FACULTY",
+ "GUID": "9b8fe788-6174-4c4e-983b-3330c93ec278",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune Plan 1 for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "INTUNE_EDU",
+ "Service_Plan_Id": "da24caf9-af8e-485c-b7c8-e73336da2693",
+ "Service_Plans_Included_Friendly_Names": "Intune for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
+ "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
+ "Service_Plans_Included_Friendly_Names": "Minecraft Education Edition"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_NO_SEEDING",
+ "Service_Plan_Id": "b67adbaf-a096-42c9-967e-5a84edbe0086",
+ "Service_Plans_Included_Friendly_Names": "Universal Print Without Seeding"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 A5 without Audio Conferencing for students use benefit",
+ "String_Id": "M365EDU_A5_NOPSTNCONF_STUUSEBNFT",
+ "GUID": "81441ae1-0b31-4185-a6c0-32b6b84d419f",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Business",
+ "String_Id": "O365_BUSINESS",
+ "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Business",
+ "String_Id": "O365_BUSINESS",
+ "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3",
+ "Service_Plan_Name": "OFFICE_BUSINESS",
+ "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
+ "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Business",
+ "String_Id": "O365_BUSINESS",
+ "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3",
+ "Service_Plan_Name": "ONEDRIVESTANDARD",
+ "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30",
+ "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Business",
+ "String_Id": "O365_BUSINESS",
+ "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Business",
+ "String_Id": "O365_BUSINESS",
+ "GUID": "cdd28e44-67e3-425e-be4c-737fab2899d3",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Business",
+ "String_Id": "SMB_BUSINESS",
+ "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Business",
+ "String_Id": "SMB_BUSINESS",
+ "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc",
+ "Service_Plan_Name": "OFFICE_BUSINESS",
+ "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
+ "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Business",
+ "String_Id": "SMB_BUSINESS",
+ "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc",
+ "Service_Plan_Name": "ONEDRIVESTANDARD",
+ "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30",
+ "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Business",
+ "String_Id": "SMB_BUSINESS",
+ "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Business",
+ "String_Id": "SMB_BUSINESS",
+ "GUID": "b214fe43-f5a3-4703-beeb-fa97188220fc",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Enterprise",
+ "String_Id": "OFFICESUBSCRIPTION",
+ "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Enterprise",
+ "String_Id": "OFFICESUBSCRIPTION",
+ "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Enterprise",
+ "String_Id": "OFFICESUBSCRIPTION",
+ "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Enterprise",
+ "String_Id": "OFFICESUBSCRIPTION",
+ "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Enterprise",
+ "String_Id": "OFFICESUBSCRIPTION",
+ "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Enterprise",
+ "String_Id": "OFFICESUBSCRIPTION",
+ "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Enterprise",
+ "String_Id": "OFFICESUBSCRIPTION",
+ "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "Service_Plan_Name": "ONEDRIVESTANDARD",
+ "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30",
+ "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Enterprise",
+ "String_Id": "OFFICESUBSCRIPTION",
+ "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Enterprise",
+ "String_Id": "OFFICESUBSCRIPTION",
+ "GUID": "c2273bd0-dff7-4215-9ef5-2c7bcfb06425",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for enterprise (device)",
+ "String_Id": "OFFICE_PROPLUS_DEVICE1",
+ "GUID": "ea4c5ec8-50e3-4193-89b9-50da5bd4cdc7",
+ "Service_Plan_Name": "OFFICE_PROPLUS_DEVICE",
+ "Service_Plan_Id": "3c994f28-87d5-4273-b07a-eb6190852599",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Device)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Students",
+ "String_Id": "OFFICESUBSCRIPTION_STUDENT",
+ "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Students",
+ "String_Id": "OFFICESUBSCRIPTION_STUDENT",
+ "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Students",
+ "String_Id": "OFFICESUBSCRIPTION_STUDENT",
+ "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Students",
+ "String_Id": "OFFICESUBSCRIPTION_STUDENT",
+ "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Students",
+ "String_Id": "OFFICESUBSCRIPTION_STUDENT",
+ "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Students",
+ "String_Id": "OFFICESUBSCRIPTION_STUDENT",
+ "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Students",
+ "String_Id": "OFFICESUBSCRIPTION_STUDENT",
+ "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac",
+ "Service_Plan_Name": "ONEDRIVESTANDARD",
+ "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30",
+ "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Students",
+ "String_Id": "OFFICESUBSCRIPTION_STUDENT",
+ "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Students",
+ "String_Id": "OFFICESUBSCRIPTION_STUDENT",
+ "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Students",
+ "String_Id": "OFFICESUBSCRIPTION_STUDENT",
+ "GUID": "c32f9321-a627-406d-a114-1f9c81aaafac",
+ "Service_Plan_Name": "RMS_S_BASIC",
+ "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Faculty",
+ "String_Id": "OFFICESUBSCRIPTION_FACULTY",
+ "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Faculty",
+ "String_Id": "OFFICESUBSCRIPTION_FACULTY",
+ "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Faculty",
+ "String_Id": "OFFICESUBSCRIPTION_FACULTY",
+ "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171",
+ "Service_Plan_Name": "RMS_S_BASIC",
+ "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Faculty",
+ "String_Id": "OFFICESUBSCRIPTION_FACULTY",
+ "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Faculty",
+ "String_Id": "OFFICESUBSCRIPTION_FACULTY",
+ "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Faculty",
+ "String_Id": "OFFICESUBSCRIPTION_FACULTY",
+ "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Faculty",
+ "String_Id": "OFFICESUBSCRIPTION_FACULTY",
+ "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Faculty",
+ "String_Id": "OFFICESUBSCRIPTION_FACULTY",
+ "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171",
+ "Service_Plan_Name": "ONEDRIVESTANDARD",
+ "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30",
+ "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Faculty",
+ "String_Id": "OFFICESUBSCRIPTION_FACULTY",
+ "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Apps for Faculty",
+ "String_Id": "OFFICESUBSCRIPTION_FACULTY",
+ "GUID": "12b8c807-2e20-48fc-b453-542b6ee9d171",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC",
+ "String_Id": "MCOMEETADV_GOV",
+ "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5",
+ "Service_Plan_Name": "EXCHANGE_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC",
+ "String_Id": "MCOMEETADV_GOV",
+ "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5",
+ "Service_Plan_Name": "MCOMEETADV_GOV",
+ "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Audio Conferencing Pay-Per-Minute - EA",
+ "String_Id": "MCOMEETACPEA",
+ "GUID": "df9561a4-4969-4e6a-8e73-c601b68ec077",
+ "Service_Plan_Name": "MCOMEETACPEA",
+ "Service_Plan_Id": "bb038288-76ab-49d6-afc1-eaa6c222c65a",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing Pay-Per-Minute"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "FLOW_O365_P1",
+ "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
+ "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
+ "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "POWERAPPS_O365_P1",
+ "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD",
+ "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "TEAMS1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "O365_BUSINESS_ESSENTIALS",
+ "GUID": "3b555118-da6a-4418-894f-7df1e2096870",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "FLOW_O365_P1",
+ "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
+ "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
+ "Service_Plans_Included_Friendly_Names": "OFFICEMOBILE_SUBSCRIPTION"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "POWERAPPS_O365_P1",
+ "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD",
+ "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "TEAMS1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Basic",
+ "String_Id": "SMB_BUSINESS_ESSENTIALS",
+ "GUID": "dab7782a-93b1-4074-8bb1-0e61318bea0b",
+ "Service_Plan_Name": "YAMMER_MIDSIZE",
+ "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb",
+ "Service_Plans_Included_Friendly_Names": "YAMMER MIDSIZE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "CDS_O365_P2",
+ "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "OFFICE_BUSINESS",
+ "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Business"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "KAIZALA_O365_P2",
+ "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD",
+ "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "STREAM_O365_SMB",
+ "Service_Plan_Id": "3c53ea51-d578-46fa-a4c0-fd0a92809a60",
+ "Service_Plans_Included_Friendly_Names": "Stream for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "WHITEBOARD_PLAN1",
+ "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "RMS_S_BASIC",
+ "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "POWERAPPS_O365_P1",
+ "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "FLOW_O365_P1",
+ "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
+ "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard",
+ "String_Id": "O365_BUSINESS_PREMIUM",
+ "GUID": "f245ecc8-75af-4f8e-b61f-27d8114de5f3",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "FLOW_O365_P1",
+ "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "O365_SB_Relationship_Management",
+ "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79",
+ "Service_Plans_Included_Friendly_Names": "OUTLOOK CUSTOMER MANAGER"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "OFFICE_BUSINESS",
+ "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
+ "Service_Plans_Included_Friendly_Names": "OFFICE 365 BUSINESS"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "POWERAPPS_O365_P1",
+ "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD",
+ "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "TEAMS1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Standard - Prepaid Legacy",
+ "String_Id": "SMB_BUSINESS_PREMIUM",
+ "GUID": "ac5cef5d-921b-4f97-9ef3-c99076e5470f",
+ "Service_Plan_Name": "YAMMER_MIDSIZE",
+ "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb",
+ "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "BPOS_S_DlpAddOn",
+ "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed",
+ "Service_Plans_Included_Friendly_Names": "Data Loss Prevention"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON",
+ "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "OFFICE_BUSINESS",
+ "Service_Plan_Id": "094e7854-93fc-4d55-b2c0-3ab5369ebdc1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Business"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "MDE_SMB",
+ "Service_Plan_Id": "bfc1bbd9-981b-4f71-9b82-17c35fd0e2a4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Business"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "KAIZALA_O365_P2",
+ "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "OFFICE_SHARED_COMPUTER_ACTIVATION",
+ "Service_Plan_Id": "276d6e8a-f056-4f70-b7e8-4fc27f79f809",
+ "Service_Plans_Included_Friendly_Names": "Office Shared Computer Activation"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "O365_SB_Relationship_Management",
+ "Service_Plan_Id": "5bfe124c-bbdc-4494-8835-f1297d457d79",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Outlook Customer Manager"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD",
+ "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "WHITEBOARD_PLAN1",
+ "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "WINBIZ",
+ "Service_Plan_Id": "8e229017-d77b-43d5-9305-903395523b99",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Business"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "AAD_SMB",
+ "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "INTUNE_SMBIZ",
+ "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "STREAM_O365_E1",
+ "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "POWERAPPS_O365_P1",
+ "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "FLOW_O365_P1",
+ "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Business Premium",
+ "String_Id": "SPB",
+ "GUID": "cbdc14ab-d96c-4c30-b9f4-6ada7cdc1d46",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Domestic Calling Plan (120 Minutes)",
+ "String_Id": "MCOPSTN_5",
+ "GUID": "11dee6af-eca8-419f-8061-6864517c1875",
+ "Service_Plan_Name": "MCOPSTN5",
+ "Service_Plan_Id": "54a152dc-90de-4996-93d2-bc47e670fc06",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 DOMESTIC CALLING PLAN (120 min)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Domestic Calling Plan for GCC",
+ "String_Id": "MCOPSTN_1_GOV",
+ "GUID": "923f58ab-fca1-46a1-92f9-89fda21238a8",
+ "Service_Plan_Name": "MCOPSTN1_GOV",
+ "Service_Plan_Id": "3c8a8792-7866-409b-bb61-1b20ace0368b",
+ "Service_Plans_Included_Friendly_Names": "Domestic Calling for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Domestic Calling Plan for GCC",
+ "String_Id": "MCOPSTN_1_GOV",
+ "GUID": "923f58ab-fca1-46a1-92f9-89fda21238a8",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "CDS_O365_P2",
+ "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "MDE_LITE",
+ "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "FORMS_PLAN_E3",
+ "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
+ "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3",
+ "String_Id": "SPE_E3",
+ "GUID": "05e9a617-0261-4cee-bb44-138d3ef5d965",
+ "Service_Plan_Name": "Windows_Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "CDS_O365_P2",
+ "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION_unattended",
+ "Service_Plan_Id": "8d77e2d9-9e28-4450-8431-0def64078fc5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise (Unattended)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "MDE_LITE",
+ "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "FORMS_PLAN_E3",
+ "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "Windows Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 - Unattended License",
+ "String_Id": "SPE_E3_RPA1",
+ "GUID": "c2ac2ee4-9bb1-47e4-8541-d689c7e83371",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
+ "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "CDS_O365_P2",
+ "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "MDE_LITE",
+ "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "FORMS_PLAN_E3",
+ "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "Windows Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E3",
+ "GUID": "0c21030a-7e60-4ec7-9a0f-0042e0e0211a",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
+ "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "TEAMS_AR_DOD",
+ "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office Online"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_DOD",
+ "String_Id": "SPE_E3_USGOV_DOD",
+ "GUID": "d61d61cc-f992-433f-a577-5bd016037eeb",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "TEAMS_AR_GCCHIGH",
+ "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office Online"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E3_USGOV_GCCHIGH",
+ "String_Id": "SPE_E3_USGOV_GCCHIGH",
+ "GUID": "ca9d1dd9-dfe9-4fef-b97c-9bc1ea3c3658",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX",
+ "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
+ "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "FORMS_PLAN_E5",
+ "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
+ "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "Windows_Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5",
+ "String_Id": "SPE_E5",
+ "GUID": "06ebc4ee-1bb5-47dd-8120-11324bc54e06",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX",
+ "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
+ "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "FORMS_PLAN_E5",
+ "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "Windows Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5",
+ "GUID": "db684ac5-c0e7-4f92-8284-ef9ebde75d33",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX",
+ "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
+ "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "FORMS_PLAN_E5",
+ "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
+ "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Developer (without Windows and Audio Conferencing)",
+ "String_Id": "DEVELOPERPACK_E5",
+ "GUID": "c42b9cae-ea4f-4ab7-9717-81576235ccac",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
+ "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Compliance",
+ "String_Id": "INFORMATION_PROTECTION_COMPLIANCE",
+ "GUID": "184efa21-98c3-4e5d-95ab-d07053a96e67",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security",
+ "String_Id": "IDENTITY_THREAT_PROTECTION",
+ "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security",
+ "String_Id": "IDENTITY_THREAT_PROTECTION",
+ "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security",
+ "String_Id": "IDENTITY_THREAT_PROTECTION",
+ "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security",
+ "String_Id": "IDENTITY_THREAT_PROTECTION",
+ "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security",
+ "String_Id": "IDENTITY_THREAT_PROTECTION",
+ "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security",
+ "String_Id": "IDENTITY_THREAT_PROTECTION",
+ "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security",
+ "String_Id": "IDENTITY_THREAT_PROTECTION",
+ "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security",
+ "String_Id": "IDENTITY_THREAT_PROTECTION",
+ "GUID": "26124093-3d78-432b-b5dc-48bf992543d5",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5",
+ "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5",
+ "GUID": "44ac31e7-2999-4304-ad94-c948886741d4",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5",
+ "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5",
+ "GUID": "44ac31e7-2999-4304-ad94-c948886741d4",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5",
+ "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5",
+ "GUID": "44ac31e7-2999-4304-ad94-c948886741d4",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5",
+ "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5",
+ "GUID": "44ac31e7-2999-4304-ad94-c948886741d4",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Security for EMS E5",
+ "String_Id": "IDENTITY_THREAT_PROTECTION_FOR_EMS_E5",
+ "GUID": "44ac31e7-2999-4304-ad94-c948886741d4",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX",
+ "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
+ "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MCOPSTN8",
+ "Service_Plan_Id": "16935b20-87c0-4908-934a-22aa267d0d26",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan (120 min) at User Level"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "FORMS_PLAN_E5",
+ "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
+ "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "Windows Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "FLOW_O365_P1",
+ "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 with Calling Minutes",
+ "String_Id": "SPE_E5_CALLINGMINUTES",
+ "GUID": "a91fc4e0-65e5-4266-aa76-4037509c1626",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX",
+ "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
+ "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "FORMS_PLAN_E5",
+ "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "INSIDER_RISK_MANAGEMENT",
+ "Service_Plan_Id": "9d0c4ee5-e4a1-4625-ab39-d82b619b1a34",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "Windows Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing",
+ "String_Id": "SPE_E5_NOPSTNCONF",
+ "GUID": "cd2925a3-5076-4233-8931-638a8c94f773",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX",
+ "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
+ "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "FORMS_PLAN_E5",
+ "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "Windows Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 without Audio Conferencing (500 seats min)_HUB",
+ "String_Id": "Microsoft_365_E5_without_Audio_Conferencing",
+ "GUID": "2113661c-6509-4034-98bb-9c47bd28d63c",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Cloud App Security Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "STREAM_O365_K",
+ "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 K SKU"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "SHAREPOINTDESKLESS",
+ "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Online Kiosk"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "MCOIMP",
+ "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1",
+ "GUID": "44575883-256e-4a79-9da4-ebe9acabe2b2",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "CDS_O365_F1",
+ "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "EXCHANGE_S_DESKLESS",
+ "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "FORMS_PLAN_K",
+ "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "KAIZALA_O365_P1",
+ "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
+ "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
+ "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "PROJECT_O365_F3",
+ "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "SHAREPOINTDESKLESS",
+ "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "MCOIMP",
+ "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE",
+ "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1",
+ "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "WIN10_ENT_LOC_F1",
+ "Service_Plan_Id": "e041597c-9c7f-4ed9-99b0-2663301576f7",
+ "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise E3 (Local Only)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "DYN365_CDS_O365_F1",
+ "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps Discovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "STREAM_O365_K",
+ "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "POWERAPPS_O365_S1",
+ "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "FLOW_O365_S1",
+ "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1",
+ "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3",
+ "String_Id": "SPE_F1",
+ "GUID": "66b55226-6b4f-492c-910c-a3b7a3c9d993",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "RMS_S_PREMIUM_GOV",
+ "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "DYN365_CDS_O365_F1_GCC",
+ "Service_Plan_Id": "29007dd3-36c0-4cc2-935d-f5bca2c2c473",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "CDS_O365_F1_GCC",
+ "Service_Plan_Id": "5e05331a-0aec-437e-87db-9ef5934b5771",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1 GCC"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "EXCHANGE_S_DESKLESS_GOV",
+ "Service_Plan_Id": "88f4d7ef-a73b-4246-8047-516022144c9f",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Kiosk) for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "FORMS_GOV_F1",
+ "Service_Plan_Id": "bfd4133a-bbf3-4212-972b-60412137c428",
+ "Service_Plans_Included_Friendly_Names": "Forms for Government (Plan F1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "STREAM_O365_K_GOV",
+ "Service_Plan_Id": "d65648f1-9504-46e4-8611-2658763f28b8",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 for Government (F1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "TEAMS_GOV",
+ "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV",
+ "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "SHAREPOINTWAC_GOV",
+ "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV",
+ "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a",
+ "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "POWERAPPS_O365_S1_GOV",
+ "Service_Plan_Id": "49f06c3d-da7d-4fa0-bcce-1458fdd18a59",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3 for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "FLOW_O365_S1_GOV",
+ "Service_Plan_Id": "5d32692e-5b24-4a59-a77e-b2a8650e25c1",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3 for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "SHAREPOINTDESKLESS_GOV",
+ "Service_Plan_Id": "b1aeb897-3a19-46e2-8c27-a609413cf193",
+ "Service_Plans_Included_Friendly_Names": "SharePoint KioskG"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "MCOIMP_GOV",
+ "Service_Plan_Id": "8a9f17f1-5872-44e8-9b11-3caade9dc90f",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1) for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE",
+ "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F3 GCC",
+ "String_Id": "M365_F1_GOV",
+ "GUID": "2a914830-d700-444a-b73c-e3f31980d833",
+ "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1",
+ "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "BPOS_S_DlpAddOn",
+ "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed",
+ "Service_Plans_Included_Friendly_Names": "Data Loss Prevention"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON",
+ "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on",
+ "String_Id": "SPE_F5_COMP",
+ "GUID": "91de26be-adfa-4a3d-989e-9131cc23dda7",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR (DOD)_USGOV_DOD",
+ "String_Id": "SPE_F5_COMP_AR_D_USGOV_DOD",
+ "GUID": "9cfd6bc3-84cd-4274-8a21-8c7c41d6c350",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE_DOD",
+ "Service_Plan_Id": "6ebdddb7-8e55-4af2-952b-69e77262f96c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps for DOD"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "BPOS_S_DlpAddOn",
+ "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed",
+ "Service_Plans_Included_Friendly_Names": "Data Loss Prevention"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON",
+ "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on AR_USGOV_GCCHIGH",
+ "String_Id": "SPE_F5_COMP_AR_USGOV_GCCHIGH",
+ "GUID": "9f436c0e-fb32-424b-90be-6a9f2919d506",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV",
+ "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "BPOS_S_DlpAddOn",
+ "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed",
+ "Service_Plans_Included_Friendly_Names": "Data Loss Prevention"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON",
+ "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV",
+ "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Compliance Add-on GCC",
+ "String_Id": "SPE_F5_COMP_GCC",
+ "GUID": "3f17cf90-67a2-4fdb-8587-37c1539507e1",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security Add-on",
+ "String_Id": "SPE_F5_SEC",
+ "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security Add-on",
+ "String_Id": "SPE_F5_SEC",
+ "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security Add-on",
+ "String_Id": "SPE_F5_SEC",
+ "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security Add-on",
+ "String_Id": "SPE_F5_SEC",
+ "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security Add-on",
+ "String_Id": "SPE_F5_SEC",
+ "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security Add-on",
+ "String_Id": "SPE_F5_SEC",
+ "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security Add-on",
+ "String_Id": "SPE_F5_SEC",
+ "GUID": "67ffe999-d9ca-49e1-9d2c-03fb28aa7a48",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "BPOS_S_DlpAddOn",
+ "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed",
+ "Service_Plans_Included_Friendly_Names": "Data Loss Prevention"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON",
+ "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F5 Security + Compliance Add-on",
+ "String_Id": "SPE_F5_SECCOMP",
+ "GUID": "32b47245-eb31-44fc-b945-a8b1576c439f",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "CDS_O365_P3_GCC",
+ "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV",
+ "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV",
+ "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise G"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "MCOMEETADV_GOV",
+ "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "MCOEV_GOV",
+ "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "ATP_ENTERPRISE_GOV",
+ "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV",
+ "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "FORMS_GOV_E5",
+ "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms for Government (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-Based Classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV",
+ "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics for Government (Full)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "TEAMS_GOV",
+ "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV",
+ "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV",
+ "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "SHAREPOINTWAC_GOV",
+ "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "BI_AZURE_P_2_GOV",
+ "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
+ "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "MCOSTANDARD_GOV",
+ "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "STREAM_O365_E5_GOV",
+ "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547",
+ "Service_Plans_Included_Friendly_Names": "Stream for Office 365 for Government (E5)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "RMS_S_PREMIUM_GOV",
+ "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P1 for GCC"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "RMS_S_PREMIUM2_GOV",
+ "Service_Plan_Id": "5400a66d-eaa5-427d-80f2-0f26d59d8fce",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2 for GCC"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC",
+ "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Cloud Apps"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "POWERAPPS_O365_P3_GOV",
+ "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 GCC G5",
+ "String_Id": "M365_G5_GCC",
+ "GUID": "e2be619b-b125-455f-8660-fb503e431a5d",
+ "Service_Plan_Name": "FLOW_O365_P3_GOV",
+ "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC",
+ "String_Id": "MCOMEETADV_GOV",
+ "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Audio Conferencing for GCC",
+ "String_Id": "MCOMEETADV_GOV",
+ "GUID": "2d3091c7-0712-488b-b3d8-6b97bde6a1f5",
+ "Service_Plan_Name": "MCOMEETADV_GOV",
+ "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 AUDIO CONFERENCING FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Suite features",
+ "String_Id": "M365_E5_SUITE_COMPONENTS",
+ "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Suite features",
+ "String_Id": "M365_E5_SUITE_COMPONENTS",
+ "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Suite features",
+ "String_Id": "M365_E5_SUITE_COMPONENTS",
+ "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
+ "Service_Plan_Name": "INSIDER_RISK",
+ "Service_Plan_Id": "d587c7a3-bda9-4f99-8776-9bcf59c84f75",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Insider Risk Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Suite features",
+ "String_Id": "M365_E5_SUITE_COMPONENTS",
+ "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-based classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 E5 Suite features",
+ "String_Id": "M365_E5_SUITE_COMPONENTS",
+ "GUID": "99cc8282-2f74-4954-83b7-c6a9a1999067",
+ "Service_Plan_Name": "SAFEDOCS",
+ "Service_Plan_Id": "bf6f5520-59e3-4f82-974b-7dbbc4fd27c7",
+ "Service_Plans_Included_Friendly_Names": "Office 365 SafeDocs"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "AAD_PREMIUM"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "RMS_S_PREMIUM",
+ "Service_Plan_Id": "6c57d4b6-3b23-47a5-9bc9-69f17b4947b3",
+ "Service_Plans_Included_Friendly_Names": "RMS_S_PREMIUM"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "ADALLOM_S_DISCOVERY",
+ "Service_Plan_Id": "932ad362-64a8-4783-9106-97849a1a30b9",
+ "Service_Plans_Included_Friendly_Names": "ADALLOM_S_DISCOVERY"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "DYN365_CDS_O365_F1",
+ "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f",
+ "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_F1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "EXCHANGE_S_DESKLESS",
+ "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_DESKLESS"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "MFA_PREMIUM"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "INTUNE_A"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT_SEARCH"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "STREAM_O365_K",
+ "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9",
+ "Service_Plans_Included_Friendly_Names": "STREAM_O365_K"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "TEAMS1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "INTUNE_O365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "SHAREPOINTDESKLESS",
+ "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINTDESKLESS"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "MCOIMP",
+ "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
+ "Service_Plans_Included_Friendly_Names": "MCOIMP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 F1",
+ "String_Id": "M365_F1_COMM",
+ "GUID": "50f60901-3181-4b75-8a2c-4c8e4c1d5a72",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY PREMIUM P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
+ "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "RMS_S_PREMIUM_GOV",
+ "Service_Plan_Id": "1b66aedf-8ca1-4f73-af76-ec76c6180f98",
+ "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT PREMIUM FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC",
+ "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc",
+ "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE - O365 P2 GCC"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "CDS_O365_P2_GCC",
+ "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41",
+ "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P2 GCC"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE PLAN 2G"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "FORMS_GOV_E3",
+ "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc",
+ "Service_Plans_Included_Friendly_Names": "FORMS FOR GOVERNMENT (PLAN E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "CONTENT_EXPLORER",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS - PREMIUM"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "CONTENTEXPLORER_STANDARD",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS - STANDARD"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION FOR OFFICE 365 - STANDARD"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "MYANALYTICS_P2_GOV",
+ "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0",
+ "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV",
+ "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 APPS FOR ENTERPRISE G"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "MFA_PREMIUM",
+ "Service_Plan_Id": "8a256a2b-b617-496d-b51b-e76466e88db0",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT Azure Multi-Factor Authentication"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT BOOKINGS"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "STREAM_O365_E3_GOV",
+ "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 FOR GOVERNMENT (E3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "TEAMS_GOV",
+ "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV",
+ "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
+ "Service_Plans_Included_Friendly_Names": "OFFICE 365 PLANNER FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "SHAREPOINTWAC_GOV",
+ "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
+ "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB (GOVERNMENT)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "POWERAPPS_O365_P2_GOV",
+ "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3",
+ "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365 FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "FLOW_O365_P2_GOV",
+ "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b",
+ "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365 FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
+ "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 2G"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 G3 GCC",
+ "String_Id": "M365_G3_GOV",
+ "GUID": "e823ca47-49c4-46b3-b38d-ca11d5abe3d2",
+ "Service_Plan_Name": "MCOSTANDARD_GOV",
+ "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Lighthouse",
+ "String_Id": "Microsoft365_Lighthouse",
+ "GUID": "9c0587f3-8665-4252-a8ad-b7a5ade57312",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Lighthouse",
+ "String_Id": "Microsoft365_Lighthouse",
+ "GUID": "9c0587f3-8665-4252-a8ad-b7a5ade57312",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "AAD_PREMIUM_P2",
+ "Service_Plan_Id": "eec0eb4f-6444-4f95-aba0-50c24d67f998",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "RMS_S_PREMIUM2",
+ "Service_Plan_Id": "5689bec4-755d-4753-8b61-40975025187c",
+ "Service_Plans_Included_Friendly_Names": "Azure Information Protection Premium P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "BPOS_S_DlpAddOn",
+ "Service_Plan_Id": "9bec7e34-c9fa-40b7-a9d1-bd6d1165c7ed",
+ "Service_Plans_Included_Friendly_Names": "Data Loss Prevention"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "EXCHANGE_S_ARCHIVE_ADDON",
+ "Service_Plan_Id": "176a09a6-7ec5-4039-ac02-b2791c6ba793",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Archiving for Exchange Online"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "MICROSOFTENDPOINTDLP",
+ "Service_Plan_Id": "64bfac92-2b17-4482-b5e5-a0304429de3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Endpoint DLP"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "ML_CLASSIFICATION",
+ "Service_Plan_Id": "d2d51368-76c9-4317-ada2-a12c004c432f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft ML-based classification"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft 365 Security and Compliance for Firstline Workers",
+ "String_Id": "M365_SECURITY_COMPLIANCE_FOR_FLW",
+ "GUID": "2347355b-4e81-41a4-9c22-55057a399791",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Business Center",
+ "String_Id": "MICROSOFT_BUSINESS_CENTER",
+ "GUID": "726a0894-2c77-4d65-99da-9775ef05aad1",
+ "Service_Plan_Name": "MICROSOFT_BUSINESS_CENTER",
+ "Service_Plan_Id": "cca845f9-fd51-4df6-b563-976a37c56ce0",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT BUSINESS CENTER"
+ },
+ {
+ "Product_Display_Name": "Microsoft Cloud App Security",
+ "String_Id": "ADALLOM_STANDALONE",
+ "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Cloud App Security",
+ "String_Id": "ADALLOM_STANDALONE",
+ "GUID": "df845ce7-05f9-4894-b5f2-11bbfbcfd2b6",
+ "Service_Plan_Name": "ADALLOM_S_STANDALONE",
+ "Service_Plan_Id": "2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial",
+ "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial",
+ "GUID": "556640c0-53ea-4773-907d-29c55332983f",
+ "Service_Plan_Name": "MCS_BizApps_Cloud_for_Sustainability_vTrial",
+ "Service_Plan_Id": "c1c902e3-a956-4273-abdb-c92afcd027ef",
+ "Service_Plans_Included_Friendly_Names": "MCS - BizApps_Cloud for Sustainability_vTrial"
+ },
+ {
+ "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial",
+ "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial",
+ "GUID": "556640c0-53ea-4773-907d-29c55332983f",
+ "Service_Plan_Name": "POWER_APPS_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "54b37829-818e-4e3c-a08a-3ea66ab9b45d",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial",
+ "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial",
+ "GUID": "556640c0-53ea-4773-907d-29c55332983f",
+ "Service_Plan_Name": "POWER_AUTOMATE_DYN365_VIRAL_TRIAL",
+ "Service_Plan_Id": "81d4ecb8-0481-42fb-8868-51536c5aceeb",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365 vTrial"
+ },
+ {
+ "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial",
+ "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial",
+ "GUID": "556640c0-53ea-4773-907d-29c55332983f",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Cloud for Sustainability vTrial",
+ "String_Id": "Microsoft_Cloud_for_Sustainability_vTrial",
+ "GUID": "556640c0-53ea-4773-907d-29c55332983f",
+ "Service_Plan_Name": "DYN365_CDS_VIRAL",
+ "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Endpoint",
+ "String_Id": "WIN_DEF_ATP",
+ "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Endpoint",
+ "String_Id": "WIN_DEF_ATP",
+ "GUID": "111046dd-295b-4d6d-9724-d52ac90bd1f2",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT DEFENDER FOR ENDPOINT"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Endpoint P1",
+ "String_Id": "DEFENDER_ENDPOINT_P1",
+ "GUID": "16a55f2f-ff35-4cd5-9146-fb784e3761a5",
+ "Service_Plan_Name": "Intune_Defender",
+ "Service_Plan_Id": "1689aade-3d6a-4bfc-b017-46d2672df5ad",
+ "Service_Plans_Included_Friendly_Names": "MDE_SecurityManagement"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Endpoint P1",
+ "String_Id": "DEFENDER_ENDPOINT_P1",
+ "GUID": "16a55f2f-ff35-4cd5-9146-fb784e3761a5",
+ "Service_Plan_Name": "MDE_LITE",
+ "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Endpoint P1 for EDU",
+ "String_Id": "DEFENDER_ENDPOINT_P1_EDU",
+ "GUID": "bba890d4-7881-4584-8102-0c3fdfb739a7",
+ "Service_Plan_Name": "MDE_LITE",
+ "Service_Plan_Id": "292cc034-7b7c-4950-aaf5-943befd3f1d4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint Plan 1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT",
+ "String_Id": "MDATP_XPLAT",
+ "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT",
+ "String_Id": "MDATP_XPLAT",
+ "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab",
+ "Service_Plan_Name": "Intune_Defender",
+ "Service_Plan_Id": "1689aade-3d6a-4bfc-b017-46d2672df5ad",
+ "Service_Plans_Included_Friendly_Names": "MDE_SecurityManagement"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Endpoint P2_XPLAT",
+ "String_Id": "MDATP_XPLAT",
+ "GUID": "b126b073-72db-4a9d-87a4-b17afe41d4ab",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Endpoint Server",
+ "String_Id": "MDATP_Server",
+ "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Endpoint Server",
+ "String_Id": "MDATP_Server",
+ "GUID": "509e8ab6-0274-4cda-bcbd-bd164fd562c4",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Microsoft Dynamics CRM Online Basic",
+ "String_Id": "CRMPLAN2",
+ "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Microsoft Dynamics CRM Online Basic",
+ "String_Id": "CRMPLAN2",
+ "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Dynamics CRM Online Basic",
+ "String_Id": "CRMPLAN2",
+ "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657",
+ "Service_Plan_Name": "CRMPLAN2",
+ "Service_Plan_Id": "bf36ca64-95c6-4918-9275-eb9f4ce2c04f",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE BASIC"
+ },
+ {
+ "Product_Display_Name": "Microsoft Dynamics CRM Online Basic",
+ "String_Id": "CRMPLAN2",
+ "GUID": "906af65a-2970-46d5-9b58-4e9aa50f0657",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Identity",
+ "String_Id": "ATA",
+ "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Identity",
+ "String_Id": "ATA",
+ "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5",
+ "Service_Plan_Name": "ATA",
+ "Service_Plan_Id": "14ab5db5-e6c4-4b20-b4bc-13e36fd2227f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Identity"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Identity",
+ "String_Id": "ATA",
+ "GUID": "98defdf7-f6c1-44f5-a1f6-943b6764e7a5",
+ "Service_Plan_Name": "ADALLOM_FOR_AATP",
+ "Service_Plan_Id": "61d18b02-6889-479f-8f36-56e6e0fe5792",
+ "Service_Plans_Included_Friendly_Names": "SecOps Investigation for MDI"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1) Faculty",
+ "String_Id": "ATP_ENTERPRISE_FACULTY",
+ "GUID": "26ad4b5c-b686-462e-84b9-d7c22b46837f",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1) GCC",
+ "String_Id": "ATP_ENTERPRISE_GOV",
+ "GUID": "d0d1ca43-b81a-4f51-81e5-a5b1ad7bb005",
+ "Service_Plan_Name": "ATP_ENTERPRISE_GOV",
+ "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC",
+ "String_Id": "THREAT_INTELLIGENCE_GOV",
+ "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC",
+ "String_Id": "THREAT_INTELLIGENCE_GOV",
+ "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d",
+ "Service_Plan_Name": "ATP_ENTERPRISE_GOV",
+ "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1) for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 2) GCC",
+ "String_Id": "THREAT_INTELLIGENCE_GOV",
+ "GUID": "56a59ffb-9df1-421b-9e61-8b568583474d",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV",
+ "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2) for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender Vulnerability Management",
+ "String_Id": "TVM_Premium_Standalone",
+ "GUID": "1925967e-8013-495f-9644-c99f8b463748",
+ "Service_Plan_Name": "TVM_PREMIUM_1",
+ "Service_Plan_Id": "36810a13-b903-490a-aa45-afbeb7540832",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender Vulnerability Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender Vulnerability Management Add-on",
+ "String_Id": "TVM_Premium_Add_on",
+ "GUID": "ad7a56e0-6903-4d13-94f3-5ad491e78960",
+ "Service_Plan_Name": "TVM_PREMIUM_1",
+ "Service_Plan_Id": "36810a13-b903-490a-aa45-afbeb7540832",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender Vulnerability Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft Dynamics CRM Online",
+ "String_Id": "CRMSTANDARD",
+ "GUID": "d17b27af-3f49-4822-99f9-56a661538792",
+ "Service_Plan_Name": "CRMSTANDARD",
+ "Service_Plan_Id": "f9646fb2-e3b2-4309-95de-dc4833737456",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS CRM ONLINE PROFESSIONA"
+ },
+ {
+ "Product_Display_Name": "Microsoft Dynamics CRM Online",
+ "String_Id": "CRMSTANDARD",
+ "GUID": "d17b27af-3f49-4822-99f9-56a661538792",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Dynamics CRM Online",
+ "String_Id": "CRMSTANDARD",
+ "GUID": "d17b27af-3f49-4822-99f9-56a661538792",
+ "Service_Plan_Name": "MDM_SALES_COLLABORATION",
+ "Service_Plan_Id": "3413916e-ee66-4071-be30-6f94d4adfeda",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT DYNAMICS MARKETING SALES COLLABORATION - ELIGIBILITY CRITERIA APPLY"
+ },
+ {
+ "Product_Display_Name": "Microsoft Dynamics CRM Online",
+ "String_Id": "CRMSTANDARD",
+ "GUID": "d17b27af-3f49-4822-99f9-56a661538792",
+ "Service_Plan_Name": "NBPROFESSIONALFORCRM",
+ "Service_Plan_Id": "3e58e97c-9abe-ebab-cd5f-d543d1529634",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT SOCIAL ENGAGEMENT PROFESSIONAL - ELIGIBILITY CRITERIA APPLY"
+ },
+ {
+ "Product_Display_Name": "Microsoft Dynamics CRM Online",
+ "String_Id": "CRMSTANDARD",
+ "GUID": "d17b27af-3f49-4822-99f9-56a661538792",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR DYNAMICS 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Imagine Academy",
+ "String_Id": "IT_ACADEMY_AD",
+ "GUID": "ba9a34de-4489-469d-879c-0f0f145321cd",
+ "Service_Plan_Name": "IT_ACADEMY_AD",
+ "Service_Plan_Id": "d736def0-1fde-43f0-a5be-e3f8b2de6e41",
+ "Service_Plans_Included_Friendly_Names": "MS IMAGINE ACADEMY"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune Device",
+ "String_Id": "INTUNE_A_D",
+ "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune Device",
+ "String_Id": "INTUNE_A_D",
+ "GUID": "2b317a4a-77a6-4188-9437-b68a77b4e2c6",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune Device for Government",
+ "String_Id": "INTUNE_A_D_GOV",
+ "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune Device for Government",
+ "String_Id": "INTUNE_A_D_GOV",
+ "GUID": "2c21e77a-e0d6-4570-b38a-7ff2dc17d2ca",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps for Developer",
+ "String_Id": "POWERAPPS_DEV",
+ "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80",
+ "Service_Plan_Name": "DYN365_CDS_DEV_VIRAL",
+ "Service_Plan_Id": "d8c638e2-9508-40e3-9877-feb87603837b",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - DEV VIRAL"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps for Developer",
+ "String_Id": "POWERAPPS_DEV",
+ "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps for Developer",
+ "String_Id": "POWERAPPS_DEV",
+ "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80",
+ "Service_Plan_Name": "FLOW_DEV_VIRAL",
+ "Service_Plan_Id": "c7ce3f26-564d-4d3a-878d-d8ab868c85fe",
+ "Service_Plans_Included_Friendly_Names": "Flow for Developer"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps for Developer",
+ "String_Id": "POWERAPPS_DEV",
+ "GUID": "5b631642-bd26-49fe-bd20-1daaa972ef80",
+ "Service_Plan_Name": "POWERAPPS_DEV_VIRAL",
+ "Service_Plan_Id": "a2729df7-25f8-4e63-984b-8a8484121554",
+ "Service_Plans_Included_Friendly_Names": "PowerApps for Developer"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial",
+ "String_Id": "POWERAPPS_VIRAL",
+ "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4",
+ "Service_Plan_Name": "DYN365_CDS_VIRAL",
+ "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - VIRAL"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial",
+ "String_Id": "POWERAPPS_VIRAL",
+ "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial",
+ "String_Id": "POWERAPPS_VIRAL",
+ "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4",
+ "Service_Plan_Name": "FLOW_P2_VIRAL",
+ "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170",
+ "Service_Plans_Included_Friendly_Names": "Flow Free"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial",
+ "String_Id": "POWERAPPS_VIRAL",
+ "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4",
+ "Service_Plan_Name": "FLOW_P2_VIRAL_REAL",
+ "Service_Plan_Id": "d20bfa21-e9ae-43fc-93c2-20783f0840c3",
+ "Service_Plans_Included_Friendly_Names": "Flow P2 Viral"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps Plan 2 Trial",
+ "String_Id": "POWERAPPS_VIRAL",
+ "GUID": "dcb1a3ae-b33f-4487-846a-a640262fadf4",
+ "Service_Plan_Name": "POWERAPPS_P2_VIRAL",
+ "Service_Plan_Id": "d5368ca3-357e-4acb-9c21-8495fb025d1f",
+ "Service_Plans_Included_Friendly_Names": "PowerApps Trial"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Automate Free",
+ "String_Id": "FLOW_FREE",
+ "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d",
+ "Service_Plan_Name": "DYN365_CDS_VIRAL",
+ "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0",
+ "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Automate Free",
+ "String_Id": "FLOW_FREE",
+ "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Automate Free",
+ "String_Id": "FLOW_FREE",
+ "GUID": "f30db892-07e9-47e9-837c-80727f46fd3d",
+ "Service_Plan_Name": "FLOW_P2_VIRAL",
+ "Service_Plan_Id": "50e68c76-46c6-4674-81f9-75456511b170",
+ "Service_Plans_Included_Friendly_Names": "FLOW FREE"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Automate Plan 2",
+ "String_Id": "FLOW_P2",
+ "GUID": "4755df59-3f73-41ab-a249-596ad72b5504",
+ "Service_Plan_Name": "DYN365_CDS_P2",
+ "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Automate Plan 2",
+ "String_Id": "FLOW_P2",
+ "GUID": "4755df59-3f73-41ab-a249-596ad72b5504",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Automate Plan 2",
+ "String_Id": "FLOW_P2",
+ "GUID": "4755df59-3f73-41ab-a249-596ad72b5504",
+ "Service_Plan_Name": "FLOW_P2",
+ "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d",
+ "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune SMB",
+ "String_Id": "INTUNE_SMB",
+ "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958",
+ "Service_Plan_Name": "AAD_SMB",
+ "Service_Plan_Id": "de377cbc-0019-4ec2-b77c-3f223947e102",
+ "Service_Plans_Included_Friendly_Names": "AZURE ACTIVE DIRECTORY"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune SMB",
+ "String_Id": "INTUNE_SMB",
+ "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune SMB",
+ "String_Id": "INTUNE_SMB",
+ "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958",
+ "Service_Plan_Name": "INTUNE_SMBIZ",
+ "Service_Plan_Id": "8e9ff0ff-aa7a-4b20-83c1-2f636b600ac2",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune SMB",
+ "String_Id": "INTUNE_SMB",
+ "GUID": "e6025b08-2fa5-4313-bd0a-7e5ffca32958",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT INTUNE"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune Suite",
+ "String_Id": "Microsoft_Intune_Suite",
+ "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8",
+ "Service_Plan_Name": "Intune_AdvancedEA",
+ "Service_Plan_Id": "2a4baa0e-5e99-4c38-b1f2-6864960f1bd1",
+ "Service_Plans_Included_Friendly_Names": "Intune Advanced endpoint analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune Suite",
+ "String_Id": "Microsoft_Intune_Suite",
+ "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8",
+ "Service_Plan_Name": "Intune-EPM",
+ "Service_Plan_Id": "bb73f429-78ef-4ff2-83c8-722b04c3e7d1",
+ "Service_Plans_Included_Friendly_Names": "Intune Endpoint Privilege Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune Suite",
+ "String_Id": "Microsoft_Intune_Suite",
+ "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8",
+ "Service_Plan_Name": "INTUNE_P2",
+ "Service_Plan_Id": "d9923fe3-a2de-4d29-a5be-e3e83bb786be",
+ "Service_Plans_Included_Friendly_Names": "Intune Plan 2"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune Suite",
+ "String_Id": "Microsoft_Intune_Suite",
+ "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8",
+ "Service_Plan_Name": "Intune-MAMTunnel",
+ "Service_Plan_Id": "a6e407da-7411-4397-8a2e-d9b52780849e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Tunnel for Mobile Application Management"
+ },
+ {
+ "Product_Display_Name": "Microsoft Intune Suite",
+ "String_Id": "Microsoft_Intune_Suite",
+ "GUID": "a929cd4d-8672-47c9-8664-159c1f322ba8",
+ "Service_Plan_Name": "REMOTE_HELP",
+ "Service_Plan_Id": "a4c6cf29-1168-4076-ba5c-e8fe0e62b17e",
+ "Service_Plans_Included_Friendly_Names": "Remote help"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)",
+ "String_Id": "POWERFLOW_P2",
+ "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b",
+ "Service_Plan_Name": "DYN365_CDS_P2",
+ "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - P2"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)",
+ "String_Id": "POWERFLOW_P2",
+ "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)",
+ "String_Id": "POWERFLOW_P2",
+ "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b",
+ "Service_Plan_Name": "POWERAPPS_P2",
+ "Service_Plan_Id": "00527d7f-d5bc-4c2a-8d1e-6c0de2410c81",
+ "Service_Plans_Included_Friendly_Names": "Power Apps (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Power Apps Plan 2 (Qualified Offer)",
+ "String_Id": "POWERFLOW_P2",
+ "GUID": "ddfae3e3-fcb2-4174-8ebd-3023cb213c8b",
+ "Service_Plan_Name": "FLOW_P2",
+ "Service_Plan_Id": "56be9436-e4b2-446c-bb7f-cc15d16cca4d",
+ "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Relationship Sales solution",
+ "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f",
+ "Service_Plan_Name": "Forms_Pro_Relationship_Sales",
+ "Service_Plan_Id": "507172c0-6001-4f4f-80e7-f350507af3e5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Dynamics 365 Customer Voice for Relationship Sales"
+ },
+ {
+ "Product_Display_Name": "Microsoft Relationship Sales solution",
+ "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f",
+ "Service_Plan_Name": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "Service_Plan_Id": "56e3d4ca-2e31-4c3f-8d57-89c1d363503b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Relationship Sales solution"
+ },
+ {
+ "Product_Display_Name": "Microsoft Relationship Sales solution",
+ "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f",
+ "Service_Plan_Name": "NBENTERPRISE",
+ "Service_Plan_Id": "03acaee3-9492-4f40-aed4-bcb6b32981b6",
+ "Service_Plans_Included_Friendly_Names": "Retired - Microsoft Social Engagement"
+ },
+ {
+ "Product_Display_Name": "Microsoft Relationship Sales solution",
+ "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Relationship Sales solution",
+ "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f",
+ "Service_Plan_Name": "Microsoft_Viva_Sales_PremiumTrial",
+ "Service_Plan_Id": "8ba1ff15-7bf6-4620-b65c-ecedb6942766",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium \u0026 Trial"
+ },
+ {
+ "Product_Display_Name": "Microsoft Relationship Sales solution",
+ "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f",
+ "Service_Plan_Name": "Microsoft_Viva_Sales_PowerAutomate",
+ "Service_Plan_Id": "a933a62f-c3fb-48e5-a0b7-ac92b94b4420",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Viva Sales Premium with Power Automate"
+ },
+ {
+ "Product_Display_Name": "Microsoft Relationship Sales solution",
+ "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft Relationship Sales solution",
+ "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ },
+ {
+ "Product_Display_Name": "Microsoft Relationship Sales solution",
+ "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Relationship Sales solution",
+ "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f",
+ "Service_Plan_Name": "POWERAPPS_DYN_APPS",
+ "Service_Plan_Id": "874fc546-6efe-4d22-90b8-5c4e7aa59f4b",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Relationship Sales solution",
+ "String_Id": "DYN365_ ENTERPRISE _RELATIONSHIP_SALES",
+ "GUID": "4f05b1a3-a978-462c-b93f-781c6bee998f",
+ "Service_Plan_Name": "FLOW_DYN_APPS",
+ "Service_Plan_Id": "7e6d7d78-73de-46ba-83b1-6d25117334ba",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Dynamics 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Stream",
+ "String_Id": "STREAM",
+ "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Microsoft Stream",
+ "String_Id": "STREAM",
+ "GUID": "1f2f344a-700d-42c9-9427-5cea1d5d7ba6",
+ "Service_Plan_Name": "MICROSOFTSTREAM",
+ "Service_Plan_Id": "acffdce6-c30f-4dc2-81c0-372e33c515ec",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM"
+ },
+ {
+ "Product_Display_Name": "Microsoft Stream Plan 2",
+ "String_Id": "STREAM_P2",
+ "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Stream Plan 2",
+ "String_Id": "STREAM_P2",
+ "GUID": "ec156933-b85b-4c50-84ec-c9e5603709ef",
+ "Service_Plan_Name": "STREAM_P2",
+ "Service_Plan_Id": "d3a458d0-f10d-48c2-9e44-86f3f684029e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream Plan 2"
+ },
+ {
+ "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)",
+ "String_Id": "STREAM_STORAGE",
+ "GUID": "9bd7c846-9556-4453-a542-191d527209e8",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Stream Storage Add-On (500 GB)",
+ "String_Id": "STREAM_STORAGE",
+ "GUID": "9bd7c846-9556-4453-a542-191d527209e8",
+ "Service_Plan_Name": "STREAM_STORAGE",
+ "Service_Plan_Id": "83bced11-77ce-4071-95bd-240133796768",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream Storage Add-On"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Audio Conferencing with dial-out to USA/CAN",
+ "String_Id": "Microsoft_Teams_Audio_Conferencing_select_dial_out",
+ "GUID": "1c27243e-fb4d-42b1-ae8c-fe25c9616588",
+ "Service_Plan_Name": "MCOMEETBASIC",
+ "Service_Plan_Id": "9974d6cf-cd24-4ba2-921c-e2aa687da846",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Audio Conferencing with dial-out to select geographies"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams (Free)",
+ "String_Id": "TEAMS_FREE",
+ "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams (Free)",
+ "String_Id": "TEAMS_FREE",
+ "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
+ "Service_Plan_Name": "MCOFREE",
+ "Service_Plan_Id": "617d9209-3b90-4879-96e6-838c42b2701d",
+ "Service_Plans_Included_Friendly_Names": "MCO FREE FOR MICROSOFT TEAMS (FREE)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams (Free)",
+ "String_Id": "TEAMS_FREE",
+ "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
+ "Service_Plan_Name": "TEAMS_FREE",
+ "Service_Plan_Id": "4fa4026d-ce74-4962-a151-8e96d57ea8e4",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS (FREE)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams (Free)",
+ "String_Id": "TEAMS_FREE",
+ "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
+ "Service_Plan_Name": "SHAREPOINTDESKLESS",
+ "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT KIOSK"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams (Free)",
+ "String_Id": "TEAMS_FREE",
+ "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
+ "Service_Plan_Name": "TEAMS_FREE_SERVICE",
+ "Service_Plan_Id": "bd6f2ac2-991a-49f9-b23c-18c96a02c228",
+ "Service_Plans_Included_Friendly_Names": "TEAMS FREE SERVICE"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams (Free)",
+ "String_Id": "TEAMS_FREE",
+ "GUID": "16ddbbfc-09ea-4de2-b1d7-312db6112d70",
+ "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1",
+ "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3",
+ "Service_Plans_Included_Friendly_Names": "WHITEBOARD (FIRSTLINE)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Essentials",
+ "String_Id": "Teams_Ess",
+ "GUID": "fde42873-30b6-436b-b361-21af5a6b84ae",
+ "Service_Plan_Name": "TeamsEss",
+ "Service_Plan_Id": "f4f2f6de-6830-442b-a433-e92249faebe2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Essentials"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)",
+ "String_Id": "TEAMS_ESSENTIALS_AAD",
+ "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc",
+ "Service_Plan_Name": "EXCHANGE_S_DESKLESS",
+ "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)",
+ "String_Id": "TEAMS_ESSENTIALS_AAD",
+ "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)",
+ "String_Id": "TEAMS_ESSENTIALS_AAD",
+ "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)",
+ "String_Id": "TEAMS_ESSENTIALS_AAD",
+ "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)",
+ "String_Id": "TEAMS_ESSENTIALS_AAD",
+ "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)",
+ "String_Id": "TEAMS_ESSENTIALS_AAD",
+ "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)",
+ "String_Id": "TEAMS_ESSENTIALS_AAD",
+ "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc",
+ "Service_Plan_Name": "ONEDRIVE_BASIC_P2",
+ "Service_Plan_Id": "4495894f-534f-41ca-9d3b-0ebf1220a423",
+ "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Essentials (AAD Identity)",
+ "String_Id": "TEAMS_ESSENTIALS_AAD",
+ "GUID": "3ab6abff-666f-4424-bfb7-f0bc274ec7bc",
+ "Service_Plan_Name": "MCOIMP",
+ "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "CDS_O365_P1",
+ "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25",
+ "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNER"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT SEARCH"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "DESKLESS",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "STREAM_O365_E1",
+ "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "MCO_TEAMS_IW",
+ "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "MOBILE DEVICE MANAGEMENT FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
+ "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
+ "Service_Plans_Included_Friendly_Names": "OFFICE MOBILE APPS FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "POWERAPPS_O365_P1",
+ "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
+ "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "FLOW_O365_P1",
+ "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
+ "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1",
+ "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813",
+ "Service_Plans_Included_Friendly_Names": "POWER VIRTUAL AGENTS FOR OFFICE 365 P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD",
+ "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "TO-DO (PLAN 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "WHITEBOARD_PLAN1",
+ "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
+ "Service_Plans_Included_Friendly_Names": "WHITEBOARD (PLAN 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Exploratory",
+ "String_Id": "TEAMS_EXPLORATORY",
+ "GUID": "710779e8-3d4a-4c88-adb9-386c958d1fdf",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "YAMMER ENTERPRIS"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Standard",
+ "String_Id": "MCOEV",
+ "GUID": "e43b5b99-8dfb-405f-9987-dc307f34bcbd",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Standard for DOD",
+ "String_Id": "MCOEV_DOD",
+ "GUID": "d01d9287-694b-44f3-bcc5-ada78c8d953e",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Standard for Faculty",
+ "String_Id": "MCOEV_FACULTY",
+ "GUID": "d979703c-028d-4de5-acbf-7955566b69b9",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTE"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Standard for GCC",
+ "String_Id": "MCOEV_GOV",
+ "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Standard for GCC",
+ "String_Id": "MCOEV_GOV",
+ "GUID": "a460366a-ade7-4791-b581-9fbff1bdaa85",
+ "Service_Plan_Name": "MCOEV_GOV",
+ "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Standard for GCCHIGH",
+ "String_Id": "MCOEV_GCCHIGH",
+ "GUID": "7035277a-5e49-4abc-a24f-0ec49c501bb5",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Standard for Small and Medium Business",
+ "String_Id": "MCOEVSMB_1",
+ "GUID": "aa6791d3-bb09-4bc2-afed-c30c3fe26032",
+ "Service_Plan_Name": "MCOEVSMB",
+ "Service_Plan_Id": "ed777b71-af04-42ca-9798-84344c66f7c6",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS CLOUD PBX FOR SMALL AND MEDIUM BUSINESS"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Standard for Students",
+ "String_Id": "MCOEV_STUDENT",
+ "GUID": "1f338bbc-767e-4a1e-a2d4-b73207cc5b93",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Standard for TELSTRA",
+ "String_Id": "MCOEV_TELSTRA",
+ "GUID": "ffaf2d68-1c95-4eb3-9ddd-59b81fba0f61",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Standard_USGOV_DOD",
+ "String_Id": "MCOEV_USGOV_DOD",
+ "GUID": "b0e7de67-e503-4934-b729-53d595ba5cd1",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Standard_USGOV_GCCHIGH",
+ "String_Id": "MCOEV_USGOV_GCCHIGH",
+ "GUID": "985fcb26-7b94-475b-b512-89356697be71",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Resource Account",
+ "String_Id": "PHONESYSTEM_VIRTUALUSER",
+ "GUID": "440eaaa8-b3e0-484b-a8be-62870b9ba70a",
+ "Service_Plan_Name": "MCOEV_VIRTUALUSER",
+ "Service_Plan_Id": "f47330e9-c134-43b3-9993-e7f004506889",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Phone Resource Account for GCC",
+ "String_Id": "PHONESYSTEM_VIRTUALUSER_GOV",
+ "GUID": "2cf22bcb-0c9e-4bc6-8daf-7e7654c0f285",
+ "Service_Plan_Name": "MCOEV_VIRTUALUSER_GOV",
+ "Service_Plan_Id": "0628a73f-3b4a-4989-bd7b-0f8823144313",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone Standard Resource Account for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing",
+ "String_Id": "Microsoft_Teams_Premium",
+ "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a",
+ "Service_Plan_Name": "MICROSOFT_ECDN",
+ "Service_Plan_Id": "85704d55-2e73-47ee-93b4-4b8ea14db92b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft eCDN"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing",
+ "String_Id": "Microsoft_Teams_Premium",
+ "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a",
+ "Service_Plan_Name": "TEAMSPRO_MGMT",
+ "Service_Plan_Id": "0504111f-feb8-4a3c-992a-70280f9a2869",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Intelligent"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing",
+ "String_Id": "Microsoft_Teams_Premium",
+ "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a",
+ "Service_Plan_Name": "TEAMSPRO_CUST",
+ "Service_Plan_Id": "cc8c0802-a325-43df-8cba-995d0c6cb373",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Personalized"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing",
+ "String_Id": "Microsoft_Teams_Premium",
+ "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a",
+ "Service_Plan_Name": "TEAMSPRO_PROTECTION",
+ "Service_Plan_Id": "f8b44f54-18bb-46a3-9658-44ab58712968",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Secure"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing",
+ "String_Id": "Microsoft_Teams_Premium",
+ "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a",
+ "Service_Plan_Name": "TEAMSPRO_VIRTUALAPPT",
+ "Service_Plan_Id": "9104f592-f2a7-4f77-904c-ca5a5715883f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointment"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing",
+ "String_Id": "Microsoft_Teams_Premium",
+ "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a",
+ "Service_Plan_Name": "MCO_VIRTUAL_APPT",
+ "Service_Plan_Id": "711413d0-b36e-4cd4-93db-0a50a4ab7ea3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Virtual Appointments"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Premium Introductory Pricing",
+ "String_Id": "Microsoft_Teams_Premium",
+ "GUID": "36a0f3b3-adb5-49ea-bf66-762134cf063a",
+ "Service_Plan_Name": "TEAMSPRO_WEBINAR",
+ "Service_Plan_Id": "78b58230-ec7e-4309-913c-93a45cc4735b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams Premium Webinar"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Basic",
+ "String_Id": "Microsoft_Teams_Rooms_Basic",
+ "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Basic",
+ "String_Id": "Microsoft_Teams_Rooms_Basic",
+ "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Basic",
+ "String_Id": "Microsoft_Teams_Rooms_Basic",
+ "GUID": "6af4b3d6-14bb-4a2a-960c-6c902aad34f3",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU",
+ "String_Id": "Microsoft_Teams_Rooms_Basic_FAC",
+ "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU",
+ "String_Id": "Microsoft_Teams_Rooms_Basic_FAC",
+ "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU",
+ "String_Id": "Microsoft_Teams_Rooms_Basic_FAC",
+ "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb",
+ "Service_Plan_Name": "Teams_Room_Basic",
+ "Service_Plan_Id": "8081ca9c-188c-4b49-a8e5-c23b5e9463a8",
+ "Service_Plans_Included_Friendly_Names": "Teams Room Basic"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU",
+ "String_Id": "Microsoft_Teams_Rooms_Basic_FAC",
+ "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb",
+ "Service_Plan_Name": "Teams_Room_Pro",
+ "Service_Plan_Id": "ec17f317-f4bc-451e-b2da-0167e5c260f9",
+ "Service_Plans_Included_Friendly_Names": "Teams Room Pro"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Basic for EDU",
+ "String_Id": "Microsoft_Teams_Rooms_Basic_FAC",
+ "GUID": "a4e376bd-c61e-4618-9901-3fc0cb1b88bb",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Basic without Audio Conferencing",
+ "String_Id": "Microsoft_Teams_Rooms_Basic_without_Audio_Conferencing",
+ "GUID": "50509a35-f0bd-4c5e-89ac-22f0e16a00f8",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Basic without Audio Conferencing",
+ "String_Id": "Microsoft_Teams_Rooms_Basic_without_Audio_Conferencing",
+ "GUID": "50509a35-f0bd-4c5e-89ac-22f0e16a00f8",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro",
+ "String_Id": "Microsoft_Teams_Rooms_Pro",
+ "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro",
+ "String_Id": "Microsoft_Teams_Rooms_Pro",
+ "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro",
+ "String_Id": "Microsoft_Teams_Rooms_Pro",
+ "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro",
+ "String_Id": "Microsoft_Teams_Rooms_Pro",
+ "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro",
+ "String_Id": "Microsoft_Teams_Rooms_Pro",
+ "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro",
+ "String_Id": "Microsoft_Teams_Rooms_Pro",
+ "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro",
+ "String_Id": "Microsoft_Teams_Rooms_Pro",
+ "GUID": "4cde982a-ede4-4409-9ae6-b003453c8ea6",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing",
+ "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing",
+ "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing",
+ "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing",
+ "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing",
+ "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing",
+ "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing",
+ "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing",
+ "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing",
+ "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing",
+ "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Pro without Audio Conferencing",
+ "String_Id": "Microsoft_Teams_Rooms_Pro_without_Audio_Conferencing",
+ "GUID": "21943e3a-2429-4f83-84c1-02735cd49e78",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices",
+ "String_Id": "MCOCAP",
+ "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 PHONE SYSTEM"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices",
+ "String_Id": "MCOCAP",
+ "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices",
+ "String_Id": "MCOCAP",
+ "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices",
+ "String_Id": "MCOCAP",
+ "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices",
+ "String_Id": "MCOCAP",
+ "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices",
+ "String_Id": "MCOCAP",
+ "GUID": "295a8eb0-f78d-45c7-8b5b-1eed5ed02dff",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices for GCC",
+ "String_Id": "MCOCAP_GOV",
+ "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3",
+ "Service_Plan_Name": "MCOEV_GOV",
+ "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices for GCC",
+ "String_Id": "MCOCAP_GOV",
+ "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3",
+ "Service_Plan_Name": "TEAMS_GOV",
+ "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices for GCC",
+ "String_Id": "MCOCAP_GOV",
+ "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3",
+ "Service_Plan_Name": "MCOSTANDARD_GOV",
+ "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices for GCC",
+ "String_Id": "MCOCAP_GOV",
+ "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices for GCC",
+ "String_Id": "MCOCAP_GOV",
+ "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Shared Devices for GCC",
+ "String_Id": "MCOCAP_GOV",
+ "GUID": "b1511558-69bd-4e1b-8270-59ca96dba0f3",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2) for Government"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard",
+ "String_Id": "MEETING_ROOM",
+ "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
+ "Service_Plan_Name": "AAD_PREMIUM",
+ "Service_Plan_Id": "41781fb2-bc02-4b7c-bd55-b576c07bb09d",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Premium Plan 1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard",
+ "String_Id": "MEETING_ROOM",
+ "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard",
+ "String_Id": "MEETING_ROOM",
+ "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard",
+ "String_Id": "MEETING_ROOM",
+ "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard",
+ "String_Id": "MEETING_ROOM",
+ "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard",
+ "String_Id": "MEETING_ROOM",
+ "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
+ "Service_Plan_Name": "Teams_Room_Standard",
+ "Service_Plan_Id": "92c6b761-01de-457a-9dd9-793a975238f7",
+ "Service_Plans_Included_Friendly_Names": "Teams Room Standard"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard",
+ "String_Id": "MEETING_ROOM",
+ "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard",
+ "String_Id": "MEETING_ROOM",
+ "GUID": "6070a4c8-34c6-4937-8dfb-39bbc6397a60",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing",
+ "String_Id": "MEETING_ROOM_NOAUDIOCONF",
+ "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing",
+ "String_Id": "MEETING_ROOM_NOAUDIOCONF",
+ "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing",
+ "String_Id": "MEETING_ROOM_NOAUDIOCONF",
+ "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing",
+ "String_Id": "MEETING_ROOM_NOAUDIOCONF",
+ "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Rooms Standard without Audio Conferencing",
+ "String_Id": "MEETING_ROOM_NOAUDIOCONF",
+ "GUID": "61bec411-e46a-4dab-8f46-8b58ec845ffe",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Trial",
+ "String_Id": "MS_TEAMS_IW",
+ "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Trial",
+ "String_Id": "MS_TEAMS_IW",
+ "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Trial",
+ "String_Id": "MS_TEAMS_IW",
+ "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
+ "Service_Plan_Name": "MCO_TEAMS_IW",
+ "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Trial",
+ "String_Id": "MS_TEAMS_IW",
+ "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Trial",
+ "String_Id": "MS_TEAMS_IW",
+ "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Trial",
+ "String_Id": "MS_TEAMS_IW",
+ "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
+ "Service_Plan_Name": "POWERAPPS_O365_P1",
+ "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Trial",
+ "String_Id": "MS_TEAMS_IW",
+ "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
+ "Service_Plan_Name": "FLOW_O365_P1",
+ "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Trial",
+ "String_Id": "MS_TEAMS_IW",
+ "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
+ "Service_Plan_Name": "SHAREPOINTDESKLESS",
+ "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Trial",
+ "String_Id": "MS_TEAMS_IW",
+ "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Trial",
+ "String_Id": "MS_TEAMS_IW",
+ "GUID": "74fbf1bb-47c6-4796-9623-77dc7371723b",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Microsoft Threat Experts - Experts on Demand",
+ "String_Id": "EXPERTS_ON_DEMAND",
+ "GUID": "9fa2f157-c8e4-4351-a3f2-ffa506da1406",
+ "Service_Plan_Name": "EXPERTS_ON_DEMAND",
+ "Service_Plan_Id": "b83a66d4-f05f-414d-ac0f-ea1c5239c42b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Threat Experts - Experts on Demand"
+ },
+ {
+ "Product_Display_Name": "Microsoft Viva Goals",
+ "String_Id": "Microsoft_Viva_Goals",
+ "GUID": "ba929637-f158-4dee-927c-eb7cdefcd955",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Viva Goals",
+ "String_Id": "Microsoft_Viva_Goals",
+ "GUID": "ba929637-f158-4dee-927c-eb7cdefcd955",
+ "Service_Plan_Name": "Viva_Goals_Premium",
+ "Service_Plan_Id": "b44c6eaf-5c9f-478c-8f16-8cea26353bfb",
+ "Service_Plans_Included_Friendly_Names": "Viva Goals"
+ },
+ {
+ "Product_Display_Name": "Microsoft Viva Suite",
+ "String_Id": "VIVA",
+ "GUID": "61902246-d7cb-453e-85cd-53ee28eec138",
+ "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP",
+ "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0",
+ "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Microsoft Viva Topics)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Viva Suite",
+ "String_Id": "VIVA",
+ "GUID": "61902246-d7cb-453e-85cd-53ee28eec138",
+ "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_USER",
+ "Service_Plan_Id": "b622badb-1b45-48d5-920f-4b27a2c0996c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Viva Insights"
+ },
+ {
+ "Product_Display_Name": "Microsoft Viva Suite",
+ "String_Id": "VIVA",
+ "GUID": "61902246-d7cb-453e-85cd-53ee28eec138",
+ "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_BACKEND",
+ "Service_Plan_Id": "ff7b261f-d98b-415b-827c-42a3fdf015af",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Viva Insights Backend"
+ },
+ {
+ "Product_Display_Name": "Microsoft Viva Suite",
+ "String_Id": "VIVA",
+ "GUID": "61902246-d7cb-453e-85cd-53ee28eec138",
+ "Service_Plan_Name": "CORTEX",
+ "Service_Plan_Id": "c815c93d-0759-4bb8-b857-bc921a71be83",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Viva Topics"
+ },
+ {
+ "Product_Display_Name": "Microsoft Viva Suite",
+ "String_Id": "VIVA",
+ "GUID": "61902246-d7cb-453e-85cd-53ee28eec138",
+ "Service_Plan_Name": "VIVAENGAGE_COMMUNITIES_AND_COMMUNICATIONS",
+ "Service_Plan_Id": "43304c6a-1d4e-4e0b-9b06-5b2a2ff58a90",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Communities and Communications"
+ },
+ {
+ "Product_Display_Name": "Microsoft Viva Suite",
+ "String_Id": "VIVA",
+ "GUID": "61902246-d7cb-453e-85cd-53ee28eec138",
+ "Service_Plan_Name": "VIVAENGAGE_KNOWLEDGE",
+ "Service_Plan_Id": "c244cc9e-622f-4576-92ea-82e233e44e36",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Knowledge"
+ },
+ {
+ "Product_Display_Name": "Microsoft Viva Suite",
+ "String_Id": "VIVA",
+ "GUID": "61902246-d7cb-453e-85cd-53ee28eec138",
+ "Service_Plan_Name": "Viva_Goals_Premium",
+ "Service_Plan_Id": "b44c6eaf-5c9f-478c-8f16-8cea26353bfb",
+ "Service_Plans_Included_Friendly_Names": "Viva Goals"
+ },
+ {
+ "Product_Display_Name": "Microsoft Viva Suite",
+ "String_Id": "VIVA",
+ "GUID": "61902246-d7cb-453e-85cd-53ee28eec138",
+ "Service_Plan_Name": "VIVA_LEARNING_PREMIUM",
+ "Service_Plan_Id": "7162bd38-edae-4022-83a7-c5837f951759",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning"
+ },
+ {
+ "Product_Display_Name": "Minecraft Education Student",
+ "String_Id": "MEE_STUDENT",
+ "GUID": "533b8f26-f74b-4e9c-9c59-50fc4b393b63",
+ "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
+ "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
+ "Service_Plans_Included_Friendly_Names": "Minecraft Education"
+ },
+ {
+ "Product_Display_Name": "Minecraft Education Student",
+ "String_Id": "MEE_STUDENT",
+ "GUID": "533b8f26-f74b-4e9c-9c59-50fc4b393b63",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Minecraft Education Faculty",
+ "String_Id": "MEE_FACULTY",
+ "GUID": "984df360-9a74-4647-8cf8-696749f6247a",
+ "Service_Plan_Name": "MINECRAFT_EDUCATION_EDITION",
+ "Service_Plan_Id": "4c246bbc-f513-4311-beff-eba54c353256",
+ "Service_Plans_Included_Friendly_Names": "Minecraft Education"
+ },
+ {
+ "Product_Display_Name": "Minecraft Education Faculty",
+ "String_Id": "MEE_FACULTY",
+ "GUID": "984df360-9a74-4647-8cf8-696749f6247a",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Multi-Geo Capabilities in Office 365",
+ "String_Id": "OFFICE365_MULTIGEO",
+ "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607",
+ "Service_Plan_Name": "EXCHANGEONLINE_MULTIGEO",
+ "Service_Plan_Id": "897d51f1-2cfa-4848-9b30-469149f5e68e",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Multi-Geo"
+ },
+ {
+ "Product_Display_Name": "Multi-Geo Capabilities in Office 365",
+ "String_Id": "OFFICE365_MULTIGEO",
+ "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607",
+ "Service_Plan_Name": "SHAREPOINTONLINE_MULTIGEO",
+ "Service_Plan_Id": "735c1d98-dd3f-4818-b4ed-c8052e18e62d",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Multi-Geo"
+ },
+ {
+ "Product_Display_Name": "Multi-Geo Capabilities in Office 365",
+ "String_Id": "OFFICE365_MULTIGEO",
+ "GUID": "84951599-62b7-46f3-9c9d-30551b2ad607",
+ "Service_Plan_Name": "TEAMSMULTIGEO",
+ "Service_Plan_Id": "41eda15d-6b52-453b-906f-bc4a5b25a26b",
+ "Service_Plans_Included_Friendly_Names": "Teams Multi-Geo"
+ },
+ {
+ "Product_Display_Name": "Nonprofit Portal",
+ "String_Id": "NONPROFIT_PORTAL",
+ "GUID": "aa2695c9-8d59-4800-9dc8-12e01f1735af",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Nonprofit Portal",
+ "String_Id": "NONPROFIT_PORTAL",
+ "GUID": "aa2695c9-8d59-4800-9dc8-12e01f1735af",
+ "Service_Plan_Name": "NONPROFIT_PORTAL",
+ "Service_Plan_Id": "7dbc2d88-20e2-4eb6-b065-4510b38d6eb2",
+ "Service_Plans_Included_Friendly_Names": "Nonprofit Portal"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "DYN365_CDS_O365_P1",
+ "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "KAIZALA_O365_P2",
+ "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
+ "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
+ "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "PROJECT_O365_P1",
+ "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1",
+ "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU",
+ "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "WHITEBOARD_PLAN1",
+ "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for faculty",
+ "String_Id": "STANDARDWOFFPACK_FACULTY",
+ "GUID": "94763226-9b3c-4e75-a931-5c89701abe66",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "DYN365_CDS_O365_P1",
+ "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "KAIZALA_O365_P2",
+ "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "PROJECT_O365_P1",
+ "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1",
+ "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU",
+ "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "WHITEBOARD_PLAN1",
+ "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for faculty",
+ "String_Id": "STANDARDWOFFPACK_IW_FACULTY",
+ "GUID": "78e66a63-337a-4a9a-8959-41c6654dfb56",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "DYN365_CDS_O365_P1",
+ "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "KAIZALA_O365_P2",
+ "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
+ "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
+ "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "PROJECT_O365_P1",
+ "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1",
+ "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU",
+ "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "WHITEBOARD_PLAN1",
+ "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 for students",
+ "String_Id": "STANDARDWOFFPACK_STUDENT",
+ "GUID": "314c4481-f395-4525-be8b-2ec4bb1e9d91",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "DYN365_CDS_O365_P1",
+ "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "KAIZALA_O365_P2",
+ "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 2"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E3"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "PROJECT_O365_P1",
+ "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P1",
+ "Service_Plan_Id": "c33802dd-1b50-4b9a-8bb9-f13d2cdeadac",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD_EDU",
+ "Service_Plan_Id": "0a4983bb-d3e5-4a09-95d8-b2d0127b3df5",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1) for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "WHITEBOARD_PLAN1",
+ "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A1 Plus for students",
+ "String_Id": "STANDARDWOFFPACK_IW_STUDENT",
+ "GUID": "e82ae690-a2d5-4d76-8d30-7c6e01e6022e",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for EDU"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "CDS_O365_P2",
+ "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the web (Education)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
+ "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2 for EDU"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for faculty",
+ "String_Id": "ENTERPRISEPACKPLUS_FACULTY",
+ "GUID": "e578b273-6db4-4691-bba0-8d691f4da603",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "CDS_O365_P2",
+ "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
+ "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A3 for students",
+ "String_Id": "ENTERPRISEPACKPLUS_STUDENT",
+ "GUID": "98b6e773-24d4-4c0d-a968-6e787a1f8204",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_3",
+ "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for faculty",
+ "String_Id": "ENTERPRISEPREMIUM_FACULTY",
+ "GUID": "a4585165-0533-458a-97e3-c400570268c4",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "AAD_BASIC_EDU",
+ "Service_Plan_Id": "1d0f309f-fdf9-4b2a-9ae7-9c48b91f1426",
+ "Service_Plans_Included_Friendly_Names": "Azure Active Directory Basic for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "EducationAnalyticsP1",
+ "Service_Plan_Id": "a9b86446-fa4e-498f-a92a-41b447e03337",
+ "Service_Plans_Included_Friendly_Names": "Education Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_3",
+ "Service_Plan_Id": "96c1e14a-ef43-418d-b115-9636cdaa8eed",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "SCHOOL_DATA_SYNC_P2",
+ "Service_Plan_Id": "500b6a2a-7a50-4f40-b5f9-160e5b8c2f48",
+ "Service_Plans_Included_Friendly_Names": "School Data Sync (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "YAMMER_EDU",
+ "Service_Plan_Id": "2078e8df-cff6-4290-98cb-5408261a760a",
+ "Service_Plans_Included_Friendly_Names": "Yammer for Academic"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 A5 for students",
+ "String_Id": "ENTERPRISEPREMIUM_STUDENT",
+ "GUID": "ee656612-49fa-43e5-b67e-cb1fdf7699df",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance",
+ "String_Id": "EQUIVIO_ANALYTICS",
+ "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance",
+ "String_Id": "EQUIVIO_ANALYTICS",
+ "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance",
+ "String_Id": "EQUIVIO_ANALYTICS",
+ "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance",
+ "String_Id": "EQUIVIO_ANALYTICS",
+ "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance",
+ "String_Id": "EQUIVIO_ANALYTICS",
+ "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance",
+ "String_Id": "EQUIVIO_ANALYTICS",
+ "GUID": "1b1b1f7a-8355-43b6-829f-336cfccb744c",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV",
+ "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox for Government"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics -Premium"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV",
+ "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery for Government"
+ },
+ {
+ "Product_Display_Name": "Office 365 Advanced Compliance for GCC",
+ "String_Id": "EQUIVIO_ANALYTICS_GOV",
+ "GUID": "1a585bba-1ce3-416e-b1d6-9c482b52fcf6",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Defender for Office 365 (Plan 1)",
+ "String_Id": "ATP_ENTERPRISE",
+ "GUID": "4ef96642-f096-40de-a3e9-d83fb2f90211",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 Extra File Storage for GCC",
+ "String_Id": "SHAREPOINTSTORAGE_GOV",
+ "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_FOUNDATION_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 Extra File Storage for GCC",
+ "String_Id": "SHAREPOINTSTORAGE_GOV",
+ "GUID": "e5788282-6381-469f-84f0-3d7d4021d34d",
+ "Service_Plan_Name": "SHAREPOINTSTORAGE_GOV",
+ "Service_Plan_Id": "e5bb877f-6ac9-4461-9e43-ca581543ab16",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTORAGE_GOV"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "CDS_O365_P1",
+ "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "STREAM_O365_E1",
+ "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E1 SKU"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "MCO_TEAMS_IW",
+ "Service_Plan_Id": "42a3ec34-28ba-46b6-992f-db53a675ac5b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the web"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "POWERAPPS_O365_P1",
+ "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "FLOW_O365_P1",
+ "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1",
+ "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P1"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "SHAREPOINTDESKLESS",
+ "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "WHITEBOARD_PLAN1",
+ "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Microsoft Teams Commercial Cloud",
+ "String_Id": "TEAMS_COMMERCIAL_TRIAL",
+ "GUID": "29a2f828-8f39-4837-b8ff-c957e86abe3c",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 Cloud App Security",
+ "String_Id": "ADALLOM_O365",
+ "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Office 365 Cloud App Security",
+ "String_Id": "ADALLOM_O365",
+ "GUID": "84d5f90f-cd0d-4864-b90b-1c7ba63b4808",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 Extra File Storage",
+ "String_Id": "SHAREPOINTSTORAGE",
+ "GUID": "99049c9c-6011-4908-bf17-15f496e6519d",
+ "Service_Plan_Name": "SHAREPOINTSTORAGE",
+ "Service_Plan_Id": "be5a7ed5-c598-4fcd-a061-5e6724c68a58",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Extra File Storage"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "CDS_O365_P1",
+ "Service_Plan_Id": "bed136c6-b799-4462-824d-fc045d3a9d25",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "KAIZALA_O365_P2",
+ "Service_Plan_Id": "54fc630f-5a40-48ee-8965-af0503c1386e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
+ "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
+ "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "PROJECT_O365_P1",
+ "Service_Plan_Id": "a55dfd10-0864-46d9-a3cd-da5991a3e0e2",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD",
+ "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "WHITEBOARD_PLAN1",
+ "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "DYN365_CDS_O365_P1",
+ "Service_Plan_Id": "40b010bb-0b69-4654-ac5e-ba161433f4b4",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "RMS_S_BASIC",
+ "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "STREAM_O365_E1",
+ "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E1"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "POWERAPPS_O365_P1",
+ "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "FLOW_O365_P1",
+ "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P1",
+ "Service_Plan_Id": "0683001c-0492-4d59-9515-d9a6426b5813",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E1",
+ "String_Id": "STANDARDPACK",
+ "GUID": "18181a46-0d4e-45cd-891e-60aabd171b4e",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_1"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD",
+ "Service_Plan_Id": "9aaf7827-d63c-4b61-89c3-182f06f82e5c",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "FLOW_O365_P1",
+ "Service_Plan_Id": "0f9b09cb-62d1-4ff4-9129-43f4996f83f4",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "POWERAPPS_O365_P1",
+ "Service_Plan_Id": "92f7a6f3-b89b-4bbd-8c30-809e6da5ad1c",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD",
+ "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "STREAM_O365_E1",
+ "Service_Plan_Id": "743dd19e-1ce3-4c62-a3ad-49ba8f63a2f6",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E1 SKU"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "TEAMS1"
+ },
+ {
+ "Product_Display_Name": "Office 365 E2",
+ "String_Id": "STANDARDWOFFPACK",
+ "GUID": "6634e0ce-1a9f-428c-a498-f84ec7b8aa2e",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2",
+ "Service_Plan_Id": "4ff01e01-1ba7-4d71-8cf8-ce96c3bbcf14",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P2"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "CDS_O365_P2",
+ "Service_Plan_Id": "95b76021-6a53-4741-ab8b-1d1f3d66a95a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P2"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "FORMS_PLAN_E3",
+ "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "KAIZALA_O365_P3",
+ "Service_Plan_Id": "aebd3021-9f8f-4bf8-bbe3-0ed2f4f047a1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 3"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the web"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P2",
+ "Service_Plan_Id": "041fe683-03e4-45b6-b1af-c0cdc516daee",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P2"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "PROJECT_O365_P2",
+ "Service_Plan_Id": "31b4e2fc-4cd6-4e7d-9c1b-41407303bd66",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "WHITEBOARD_PLAN2",
+ "Service_Plan_Id": "94a54592-cd8b-425e-87c6-97868b000b91",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3",
+ "String_Id": "ENTERPRISEPACK",
+ "GUID": "6fd2c87f-b296-42f0-b197-1e91e994b900",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_3"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "FORMS_PLAN_E5",
+ "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E5)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "SHAREPOINT_S_DEVELOPER",
+ "Service_Plan_Id": "a361d6e2-509e-4e25-a8ad-950060064ef4",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT FOR DEVELOPER"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "SHAREPOINTWAC_DEVELOPER",
+ "Service_Plan_Id": "527f7cdd-0e86-4c47-b879-f5fd357a3ac6",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE FOR DEVELOPER"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E5 SKU"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3 Developer",
+ "String_Id": "DEVELOPERPACK",
+ "GUID": "189a915c-fe4f-4ffa-bde4-85b9628d07a0",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "TEAMS1"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_DOD",
+ "String_Id": "ENTERPRISEPACK_USGOV_DOD",
+ "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_DOD",
+ "String_Id": "ENTERPRISEPACK_USGOV_DOD",
+ "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_DOD",
+ "String_Id": "ENTERPRISEPACK_USGOV_DOD",
+ "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_DOD",
+ "String_Id": "ENTERPRISEPACK_USGOV_DOD",
+ "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
+ "Service_Plan_Name": "TEAMS_AR_DOD",
+ "Service_Plan_Id": "fd500458-c24c-478e-856c-a6067a8376cd",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams for DOD (AR)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_DOD",
+ "String_Id": "ENTERPRISEPACK_USGOV_DOD",
+ "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_DOD",
+ "String_Id": "ENTERPRISEPACK_USGOV_DOD",
+ "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office Online"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_DOD",
+ "String_Id": "ENTERPRISEPACK_USGOV_DOD",
+ "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_DOD",
+ "String_Id": "ENTERPRISEPACK_USGOV_DOD",
+ "GUID": "b107e5a3-3e60-4c0d-a184-a7e4395eb44c",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
+ "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
+ "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
+ "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
+ "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
+ "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
+ "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
+ "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
+ "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E3 SKU"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
+ "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
+ "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
+ "Service_Plan_Name": "TEAMS_AR_GCCHIGH",
+ "Service_Plan_Id": "9953b155-8aef-4c56-92f3-72b0487fce41",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams for GCCHigh (AR)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
+ "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
+ "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Office 365 ProPlus"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
+ "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
+ "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office Online"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
+ "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
+ "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E3_USGOV_GCCHIGH",
+ "String_Id": "ENTERPRISEPACK_USGOV_GCCHIGH",
+ "GUID": "aea38a85-9bd5-4981-aa00-616b411205bf",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "BPOS_S_TODO_2",
+ "Service_Plan_Id": "c87f142c-d1e9-4363-8630-aaea9c4d9ae5",
+ "Service_Plans_Included_Friendly_Names": "BPOS_S_TODO_2"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT STAFFHUB"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "FLOW_O365_P2",
+ "Service_Plan_Id": "76846ad7-7776-4c40-a281-a386362dd1b9",
+ "Service_Plans_Included_Friendly_Names": "FLOW FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "FORMS_PLAN_E3",
+ "Service_Plan_Id": "2789c901-c14e-48ab-a76a-be334d9d793a",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "MCOVOICECONF",
+ "Service_Plan_Id": "27216c54-caf8-4d0d-97e2-517afb5c08f6",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "POWERAPPS_O365_P2",
+ "Service_Plan_Id": "c68f8d98-5534-41c8-bf36-22fa496fa792",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS FOR OFFICE 36"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT PLANNE"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT AZURE ACTIVE DIRECTORY RIGHTS"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "STREAM_O365_E3",
+ "Service_Plan_Id": "9e700747-8b1d-45e5-ab8d-ef187ceec156",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 E3 SKU"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "TEAMS1"
+ },
+ {
+ "Product_Display_Name": "Office 365 E4",
+ "String_Id": "ENTERPRISEWITHSCAL",
+ "GUID": "1392051d-0cb9-4b7a-88d5-621fee5e8711",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "YAMMER_ENTERPRISE"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P3"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P3"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX",
+ "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
+ "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "M365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Active Directory Rights"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "FORMS_PLAN_E5",
+ "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 E5 SKU"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced Security Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the web"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 P3"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "PowerApps for Office 365 Plan 3"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications Compliance"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5",
+ "String_Id": "ENTERPRISEPREMIUM",
+ "GUID": "c7df2760-2c81-4ef7-b578-5b5392b571df",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE",
+ "Service_Plan_Id": "bea4c11e-220a-4e6d-8eb8-8ea15d019f90",
+ "Service_Plans_Included_Friendly_Names": "Azure Rights Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "CDS_O365_P3",
+ "Service_Plan_Id": "afa73018-811e-46e9-988f-f75d2b1b8430",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE",
+ "Service_Plan_Id": "9f431833-0334-42de-a7dc-70aa40db46db",
+ "Service_Plans_Included_Friendly_Names": "Customer Lockbox"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE",
+ "Service_Plan_Id": "efb87545-963c-4e0d-99df-69c6916d9eb0",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX",
+ "Service_Plan_Id": "a6520331-d7d4-4276-95f5-15c0933bc757",
+ "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "Information Barriers"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics - Premium"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "Information Protection and Governance Analytics ? Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Premium"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "Information Protection for Office 365 - Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "MYANALYTICS_P2",
+ "Service_Plan_Id": "33c4f319-9bdd-48d6-9c4d-410b750a4a5a",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Advanced Auditing"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Apps for Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Communication Compliance"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Defender"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Communications DLP"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Customer Key"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "DATA_INVESTIGATIONS",
+ "Service_Plan_Id": "46129a58-a698-46f0-aa5b-17f6586297d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Data Investigations"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "ATP_ENTERPRISE",
+ "Service_Plan_Id": "f20fedf3-f3c3-43c3-8267-2bfdd51c0939",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE",
+ "Service_Plan_Id": "8e0c0a52-6a6c-4d40-8370-dd62790dcd70",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Office 365 (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "EXCEL_PREMIUM",
+ "Service_Plan_Id": "531ee2f8-b1cb-453b-9c21-d2180d014ca5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Excel Advanced Analytics"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "FORMS_PLAN_E5",
+ "Service_Plan_Id": "e212cbc7-0961-4c40-9825-01117710dcb1",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Information Governance"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "KAIZALA_STANDALONE",
+ "Service_Plan_Id": "0898bdbb-73b0-471a-81e5-20f1fe4dd66e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS",
+ "Service_Plan_Id": "34c0d7a0-a70f-4668-9238-47f9fc208882",
+ "Service_Plans_Included_Friendly_Names": "Microsoft MyAnalytics (Full)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Records Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "STREAM_O365_E5",
+ "Service_Plan_Id": "6c6042f5-6f01-4d67-b8c1-eb99d36eed3e",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 E5"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "Nucleus",
+ "Service_Plan_Id": "db4d623d-b514-490b-b7ef-8885eee514de",
+ "Service_Plans_Included_Friendly_Names": "Nucleus"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS",
+ "Service_Plan_Id": "4de31727-a228-4ec3-a5bf-8e45b5ca48cc",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Advanced eDiscovery"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Cloud App Security"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "PAM_ENTERPRISE",
+ "Service_Plan_Id": "b1188c4c-1b36-4018-b48b-ee07604f6feb",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Privileged Access Management"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "POWERAPPS_O365_P3",
+ "Service_Plan_Id": "9c0dab89-a30c-4117-86e7-97bda240acd2",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "Premium Encryption in Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "PROJECT_O365_P3",
+ "Service_Plan_Id": "b21a6b06-1988-436e-a07b-51ec6d9f52ad",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan E5)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "COMMUNICATIONS_COMPLIANCE",
+ "Service_Plan_Id": "41fcdd7d-4733-4863-9cf4-c65b83ce2df4",
+ "Service_Plans_Included_Friendly_Names": "RETIRED - Microsoft Communications Compliance"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "BPOS_S_TODO_3",
+ "Service_Plan_Id": "3fb82609-8c27-4f7b-bd51-30634711ee67",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "VIVA_LEARNING_SEEDED",
+ "Service_Plan_Id": "b76fb638-6ba6-402a-b9f9-83d28acb3d86",
+ "Service_Plans_Included_Friendly_Names": "Viva Learning Seeded"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3",
+ "Service_Plan_Id": "28b0fa46-c39a-4188-89e2-58e979a6b014",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "FLOW_O365_P3",
+ "Service_Plan_Id": "07699545-9485-468e-95b6-2fca3738be01",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 E5 Without Audio Conferencing",
+ "String_Id": "ENTERPRISEPREMIUM_NOPSTNCONF",
+ "GUID": "26d45bd9-adf1-46cd-a9e1-51e9a5524128",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_P3",
+ "Service_Plan_Id": "ded3d325-1bdc-453e-8432-5bac26d7a014",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "DYN365_CDS_O365_F1",
+ "Service_Plan_Id": "ca6e61ec-d4f4-41eb-8b88-d96e0e14323f",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 F1"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "CDS_O365_F1",
+ "Service_Plan_Id": "90db65a7-bf11-4904-a79f-ef657605145b",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_F1"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "EXCHANGE_S_DESKLESS",
+ "Service_Plan_Id": "4a82b400-a79f-41a4-b4e2-e94f5787b113",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online Kiosk"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "RMS_S_BASIC",
+ "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Bookings"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "FORMS_PLAN_K",
+ "Service_Plan_Id": "f07046bd-2a3c-4b96-b0be-dea79d7cbfb8",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan F1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "KAIZALA_O365_P1",
+ "Service_Plan_Id": "73b2a583-6a59-42e3-8e83-54db46bc3278",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Kaizala Pro Plan 1"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT",
+ "Service_Plan_Id": "b737dad2-2f6c-4c65-90e3-ca563267e8b9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Planner"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "Deskless",
+ "Service_Plan_Id": "8c7d2df8-86f0-4902-b2ed-a0458298f3b3",
+ "Service_Plans_Included_Friendly_Names": "Microsoft StaffHub"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "STREAM_O365_K",
+ "Service_Plan_Id": "3ffba0d2-38e5-4d5e-8ec0-98f2b05c09d9",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for Office 365 F3"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION",
+ "Service_Plan_Id": "c63d4d19-e8cb-460e-b37c-4d6c34603745",
+ "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "POWERAPPS_O365_S1",
+ "Service_Plan_Id": "e0287f9f-e222-4f98-9a83-f379e249159a",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 F3"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "FLOW_O365_S1",
+ "Service_Plan_Id": "bd91b1a4-9f94-4ecf-b45b-3a65e5c8128a",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 F3"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "POWER_VIRTUAL_AGENTS_O365_F1",
+ "Service_Plan_Id": "ba2fdb48-290b-4632-b46a-e4ecc58ac11a",
+ "Service_Plans_Included_Friendly_Names": "Power Virtual Agents for Office 365 F1"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "PROJECT_O365_F3",
+ "Service_Plan_Id": "7f6f28c2-34bb-4d4b-be36-48ca2e77e1ec",
+ "Service_Plans_Included_Friendly_Names": "Project for Office (Plan F)"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "SHAREPOINTDESKLESS",
+ "Service_Plan_Id": "902b47e5-dcb2-4fdc-858b-c63a90a2bdb9",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Kiosk"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "MCOIMP",
+ "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "BPOS_S_TODO_FIRSTLINE",
+ "Service_Plan_Id": "80873e7a-cd2a-4e67-b061-1b5381a676a5",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Firstline)"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "VIVAENGAGE_CORE",
+ "Service_Plan_Id": "a82fbf69-b4d7-49f4-83a6-915b2cf354f4",
+ "Service_Plans_Included_Friendly_Names": "Viva Engage Core"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "WHITEBOARD_FIRSTLINE1",
+ "Service_Plan_Id": "36b29273-c6d0-477a-aca6-6fbe24f538e3",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Firstline)"
+ },
+ {
+ "Product_Display_Name": "Office 365 F3",
+ "String_Id": "DESKLESSPACK",
+ "GUID": "4b585984-651b-448a-9e53-3b10f069cf7f",
+ "Service_Plan_Name": "YAMMER_ENTERPRISE",
+ "Service_Plan_Id": "7547a3fe-08ee-4ccb-b430-5077c5041653",
+ "Service_Plans_Included_Friendly_Names": "Yammer Enterprise"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "DYN365_CDS_O365_P1_GCC",
+ "Service_Plan_Id": "8eb5e9bc-783f-4425-921a-c65f45dd72c6",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - O365 P1 GCC"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "CDS_O365_P1_GCC",
+ "Service_Plan_Id": "959e5dec-6522-4d44-8349-132c27c3795a",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Teams_P1 GCC"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD_GOV",
+ "Service_Plan_Id": "e9b4930a-925f-45e2-ac2a-3f7788ca6fdd",
+ "Service_Plans_Included_Friendly_Names": "Exchange Online (Plan 1) for Government"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "FORMS_GOV_E1",
+ "Service_Plan_Id": "f4cba850-4f34-4fd2-a341-0fddfdce1e8f",
+ "Service_Plans_Included_Friendly_Names": "Forms for Government (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "MYANALYTICS_P2_GOV",
+ "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0",
+ "Service_Plans_Included_Friendly_Names": "Insights by MyAnalytics for Government"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "MICROSOFT_SEARCH",
+ "Service_Plan_Id": "94065c59-bc8e-4e8b-89e5-5138d471eaff",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Search"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "STREAM_O365_E1_GOV",
+ "Service_Plan_Id": "15267263-5986-449d-ac5c-124f3b49b2d6",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Stream for O365 for Government (E1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "TEAMS_GOV",
+ "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams for Government"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "Mobile Device Management for Office 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV",
+ "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
+ "Service_Plans_Included_Friendly_Names": "Office 365 Planner for Government"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "SHAREPOINTWAC_GOV",
+ "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Government"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "OFFICEMOBILE_SUBSCRIPTION_GOV",
+ "Service_Plan_Id": "4ccb60ee-9523-48fd-8f63-4b090f1ad77a",
+ "Service_Plans_Included_Friendly_Names": "Office Mobile Apps for Office 365 for GCC"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "POWERAPPS_O365_P1_GOV",
+ "Service_Plan_Id": "c42aa49a-f357-45d5-9972-bc29df885fee",
+ "Service_Plans_Included_Friendly_Names": "Power Apps for Office 365 for Government"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "FLOW_O365_P1_GOV",
+ "Service_Plan_Id": "ad6c8870-6356-474c-901c-64d7da8cea48",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Office 365 for Government"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "SharePoint Plan 1G",
+ "Service_Plan_Id": "f9c43823-deb4-46a8-aa65-8b551f0c4f8a",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Plan 1G"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "MCOSTANDARD_GOV",
+ "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2) for Government"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "BPOS_S_TODO_1",
+ "Service_Plan_Id": "5e62787c-c316-451f-b873-1d05acd4d12c",
+ "Service_Plans_Included_Friendly_Names": "To-Do (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 G1 GCC",
+ "String_Id": "STANDARDPACK_GOV",
+ "GUID": "3f4babde-90ec-47c6-995d-d223749065d1",
+ "Service_Plan_Name": "WHITEBOARD_PLAN1",
+ "Service_Plan_Id": "b8afc642-032e-4de5-8c0a-507a7bba7e5d",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
+ "Service_Plans_Included_Friendly_Names": "AZURE RIGHTS MANAGEMENT"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "DYN365_CDS_O365_P2_GCC",
+ "Service_Plan_Id": "06162da2-ebf9-4954-99a0-00fee96f95cc",
+ "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE - O365 P2 GCC"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "CDS_O365_P2_GCC",
+ "Service_Plan_Id": "a70bbf38-cdda-470d-adb8-5804b8770f41",
+ "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR TEAMS_P2 GCC"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE PLAN 2G"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "FORMS_GOV_E3",
+ "Service_Plan_Id": "24af5f65-d0f3-467b-9f78-ea798c4aeffc",
+ "Service_Plans_Included_Friendly_Names": "FORMS FOR GOVERNMENT (PLAN E3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS - PREMIUM"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION AND GOVERNANCE ANALYTICS - STANDARD"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "INFORMATION PROTECTION FOR OFFICE 365 - STANDARD"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "MYANALYTICS_P2_GOV",
+ "Service_Plan_Id": "6e5b7995-bd4f-4cbd-9d19-0e32010c72f0",
+ "Service_Plans_Included_Friendly_Names": "INSIGHTS BY MYANALYTICS FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV",
+ "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT 365 APPS FOR ENTERPRISE G"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT BOOKINGS"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "STREAM_O365_E3_GOV",
+ "Service_Plan_Id": "2c1ada27-dbaa-46f9-bda6-ecb94445f758",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT STREAM FOR O365 FOR GOVERNMENT (E3)"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "TEAMS_GOV",
+ "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT TEAMS FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "MOBILE DEVICE MANAGEMENT FOR OFFICE 365"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV",
+ "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
+ "Service_Plans_Included_Friendly_Names": "OFFICE 365 PLANNER FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "SHAREPOINTWAC_GOV",
+ "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
+ "Service_Plans_Included_Friendly_Names": "OFFICE FOR THE WEB (GOVERNMENT)"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "POWERAPPS_O365_P2_GOV",
+ "Service_Plan_Id": "0a20c815-5e81-4727-9bdc-2b5a117850c3",
+ "Service_Plans_Included_Friendly_Names": "POWER APPS FOR OFFICE 365 FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "FLOW_O365_P2_GOV",
+ "Service_Plan_Id": "c537f360-6a00-4ace-a7f5-9128d0ac1e4b",
+ "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR OFFICE 365 FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
+ "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 2G"
+ },
+ {
+ "Product_Display_Name": "Office 365 G3 GCC",
+ "String_Id": "ENTERPRISEPACK_GOV",
+ "GUID": "535a3a29-c5f0-42fe-8215-d3b9e1f38c4a",
+ "Service_Plan_Name": "MCOSTANDARD_GOV",
+ "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "RMS_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "6a76346d-5d6e-4051-9fe3-ed3f312b5597",
+ "Service_Plans_Included_Friendly_Names": "RMS_S_ENTERPRISE_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "DYN365_CDS_O365_P3_GCC",
+ "Service_Plan_Id": "a7d3fb37-b6df-4085-b509-50810d991a39",
+ "Service_Plans_Included_Friendly_Names": "DYN365_CDS_O365_P3_GCC"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "CDS_O365_P3_GCC",
+ "Service_Plan_Id": "bce5e5ca-c2fd-4d53-8ee2-58dfffed4c10",
+ "Service_Plans_Included_Friendly_Names": "CDS_O365_P3_GCC"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "LOCKBOX_ENTERPRISE_GOV",
+ "Service_Plan_Id": "89b5d3b1-3855-49fe-b46c-87c66dbc1526",
+ "Service_Plans_Included_Friendly_Names": "LOCKBOX_ENTERPRISE_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "EXCHANGE_S_ENTERPRISE_GOV",
+ "Service_Plan_Id": "8c3069c0-ccdb-44be-ab77-986203a67df2",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE_S_ENTERPRISE_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "FORMS_GOV_E5",
+ "Service_Plan_Id": "843da3a8-d2cc-4e7a-9e90-dc46019f964c",
+ "Service_Plans_Included_Friendly_Names": "FORMS_GOV_E5"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "INFORMATION_BARRIERS",
+ "Service_Plan_Id": "c4801e8a-cb58-4c35-aca6-f2dcc106f287",
+ "Service_Plans_Included_Friendly_Names": "INFORMATION_BARRIERS"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "Content_Explorer",
+ "Service_Plan_Id": "d9fa6af4-e046-4c89-9226-729a0786685d",
+ "Service_Plans_Included_Friendly_Names": "Content_Explorer"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "ContentExplorer_Standard",
+ "Service_Plan_Id": "2b815d45-56e4-4e3a-b65c-66cb9175b560",
+ "Service_Plans_Included_Friendly_Names": "ContentExplorer_Standard"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "MIP_S_CLP2",
+ "Service_Plan_Id": "efb0351d-3b08-4503-993d-383af8de41e3",
+ "Service_Plans_Included_Friendly_Names": "MIP_S_CLP2"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "MIP_S_CLP1",
+ "Service_Plan_Id": "5136a095-5cf0-4aff-bec3-e84448b38ea5",
+ "Service_Plans_Included_Friendly_Names": "MIP_S_CLP1"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "MICROSOFT_COMMUNICATION_COMPLIANCE",
+ "Service_Plan_Id": "a413a9ff-720c-4822-98ef-2f37c2a21f4c",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT_COMMUNICATION_COMPLIANCE"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "M365_ADVANCED_AUDITING",
+ "Service_Plan_Id": "2f442157-a11c-46b9-ae5b-6e39ff4e5849",
+ "Service_Plans_Included_Friendly_Names": "M365_ADVANCED_AUDITING"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION_GOV",
+ "Service_Plan_Id": "de9234ff-6483-44d9-b15e-dca72fdd27af",
+ "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "MCOMEETADV_GOV",
+ "Service_Plan_Id": "f544b08d-1645-4287-82de-8d91f37c02a1",
+ "Service_Plans_Included_Friendly_Names": "MCOMEETADV_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "MTP",
+ "Service_Plan_Id": "bf28f719-7844-4079-9c78-c1307898e192",
+ "Service_Plans_Included_Friendly_Names": "MTP"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "MCOEV_GOV",
+ "Service_Plan_Id": "db23fce2-a974-42ef-9002-d78dd42a0f22",
+ "Service_Plans_Included_Friendly_Names": "MCOEV_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "MICROSOFTBOOKINGS",
+ "Service_Plan_Id": "199a5c09-e0ca-4e37-8f7c-b05d533e1ea2",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFTBOOKINGS"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "COMMUNICATIONS_DLP",
+ "Service_Plan_Id": "6dc145d6-95dd-4191-b9c3-185575ee6f6b",
+ "Service_Plans_Included_Friendly_Names": "COMMUNICATIONS_DLP"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "CUSTOMER_KEY",
+ "Service_Plan_Id": "6db1f1db-2b46-403f-be40-e39395f08dbb",
+ "Service_Plans_Included_Friendly_Names": "CUSTOMER_KEY"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "ATP_ENTERPRISE_GOV",
+ "Service_Plan_Id": "493ff600-6a2b-4db6-ad37-a7d4eb214516",
+ "Service_Plans_Included_Friendly_Names": "ATP_ENTERPRISE_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "THREAT_INTELLIGENCE_GOV",
+ "Service_Plan_Id": "900018f1-0cdb-4ecb-94d4-90281760fdc6",
+ "Service_Plans_Included_Friendly_Names": "THREAT_INTELLIGENCE_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "INFO_GOVERNANCE",
+ "Service_Plan_Id": "e26c2fcc-ab91-4a61-b35c-03cdc8dddf66",
+ "Service_Plans_Included_Friendly_Names": "INFO_GOVERNANCE"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "EXCHANGE_ANALYTICS_GOV",
+ "Service_Plan_Id": "208120d1-9adb-4daf-8c22-816bd5d237e7",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE_ANALYTICS_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "RECORDS_MANAGEMENT",
+ "Service_Plan_Id": "65cc641f-cccd-4643-97e0-a17e3045e541",
+ "Service_Plans_Included_Friendly_Names": "RECORDS_MANAGEMENT"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "STREAM_O365_E5_GOV",
+ "Service_Plan_Id": "92c2089d-9a53-49fe-b1a6-9e6bdf959547",
+ "Service_Plans_Included_Friendly_Names": "STREAM_O365_E5_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "TEAMS_GOV",
+ "Service_Plan_Id": "304767db-7d23-49e8-a945-4a7eb65f9f28",
+ "Service_Plans_Included_Friendly_Names": "TEAMS_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "INTUNE_O365",
+ "Service_Plan_Id": "882e1d05-acd1-4ccb-8708-6ee03664b117",
+ "Service_Plans_Included_Friendly_Names": "INTUNE_O365"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "EQUIVIO_ANALYTICS_GOV",
+ "Service_Plan_Id": "d1cbfb67-18a8-4792-b643-630b7f19aad1",
+ "Service_Plans_Included_Friendly_Names": "EQUIVIO_ANALYTICS_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "ADALLOM_S_O365",
+ "Service_Plan_Id": "8c098270-9dd4-4350-9b30-ba4703f3b36b",
+ "Service_Plans_Included_Friendly_Names": "ADALLOM_S_O365"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "PROJECTWORKMANAGEMENT_GOV",
+ "Service_Plan_Id": "5b4ef465-7ea1-459a-9f91-033317755a51",
+ "Service_Plans_Included_Friendly_Names": "PROJECTWORKMANAGEMENT_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "SHAREPOINTWAC_GOV",
+ "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINTWAC_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "POWERAPPS_O365_P3_GOV",
+ "Service_Plan_Id": "0eacfc38-458a-40d3-9eab-9671258f1a3e",
+ "Service_Plans_Included_Friendly_Names": "POWERAPPS_O365_P3_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "FLOW_O365_P3_GOV",
+ "Service_Plan_Id": "8055d84a-c172-42eb-b997-6c2ae4628246",
+ "Service_Plans_Included_Friendly_Names": "FLOW_O365_P3_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "BI_AZURE_P_2_GOV",
+ "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76",
+ "Service_Plans_Included_Friendly_Names": "BI_AZURE_P_2_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "PREMIUM_ENCRYPTION",
+ "Service_Plan_Id": "617b097b-4b93-4ede-83de-5f075bb5fb2f",
+ "Service_Plans_Included_Friendly_Names": "PREMIUM_ENCRYPTION"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
+ "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINTENTERPRISE_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 G5 GCC",
+ "String_Id": "ENTERPRISEPREMIUM_GOV",
+ "GUID": "8900a2c0-edba-4079-bdf3-b276e293b6a8",
+ "Service_Plan_Name": "MCOSTANDARD_GOV",
+ "Service_Plan_Id": "a31ef4a2-f787-435e-8335-e47eb0cafc94",
+ "Service_Plans_Included_Friendly_Names": "MCOSTANDARD_GOV"
+ },
+ {
+ "Product_Display_Name": "Office 365 Midsize Business",
+ "String_Id": "MIDSIZEPACK",
+ "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
+ "Service_Plan_Name": "EXCHANGE_S_STANDARD_MIDMARKET",
+ "Service_Plan_Id": "fc52cc4b-ed7d-472d-bbe7-b081c23ecc56",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE PLAN"
+ },
+ {
+ "Product_Display_Name": "Office 365 Midsize Business",
+ "String_Id": "MIDSIZEPACK",
+ "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
+ "Service_Plan_Name": "MCOSTANDARD_MIDMARKET",
+ "Service_Plan_Id": "b2669e95-76ef-4e7e-a367-002f60a39f3e",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2) FOR MIDSIZ"
+ },
+ {
+ "Product_Display_Name": "Office 365 Midsize Business",
+ "String_Id": "MIDSIZEPACK",
+ "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
+ "Service_Plan_Name": "OFFICESUBSCRIPTION",
+ "Service_Plan_Id": "43de0ff5-c92c-492b-9116-175376d08c38",
+ "Service_Plans_Included_Friendly_Names": "OFFICESUBSCRIPTION"
+ },
+ {
+ "Product_Display_Name": "Office 365 Midsize Business",
+ "String_Id": "MIDSIZEPACK",
+ "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_MIDMARKET",
+ "Service_Plan_Id": "6b5b6a67-fc72-4a1f-a2b5-beecf05de761",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT PLAN 1"
+ },
+ {
+ "Product_Display_Name": "Office 365 Midsize Business",
+ "String_Id": "MIDSIZEPACK",
+ "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Office 365 Midsize Business",
+ "String_Id": "MIDSIZEPACK",
+ "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Office 365 Midsize Business",
+ "String_Id": "MIDSIZEPACK",
+ "GUID": "04a7fb0d-32e0-4241-b4f5-3f7618cd1162",
+ "Service_Plan_Name": "YAMMER_MIDSIZE",
+ "Service_Plan_Id": "41bf139a-4e60-409f-9346-a1361efc6dfb",
+ "Service_Plans_Included_Friendly_Names": "YAMMER_MIDSIZE"
+ },
+ {
+ "Product_Display_Name": "Office 365 Small Business",
+ "String_Id": "LITEPACK",
+ "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b",
+ "Service_Plan_Name": "EXCHANGE_L_STANDARD",
+ "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 Small Business",
+ "String_Id": "LITEPACK",
+ "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b",
+ "Service_Plan_Name": "MCOLITE",
+ "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 Small Business",
+ "String_Id": "LITEPACK",
+ "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b",
+ "Service_Plan_Name": "SHAREPOINTLITE",
+ "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE"
+ },
+ {
+ "Product_Display_Name": "Office 365 Small Business",
+ "String_Id": "LITEPACK",
+ "GUID": "bd09678e-b83c-4d3f-aaba-3dad4abd128b",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Office 365 Small Business Premium",
+ "String_Id": "LITEPACK_P2",
+ "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b",
+ "Service_Plan_Name": "EXCHANGE_L_STANDARD",
+ "Service_Plan_Id": "d42bdbd6-c335-4231-ab3d-c8f348d5aff5",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE ONLINE (P1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 Small Business Premium",
+ "String_Id": "LITEPACK_P2",
+ "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b",
+ "Service_Plan_Name": "MCOLITE",
+ "Service_Plan_Id": "70710b6b-3ab4-4a38-9f6d-9f169461650a",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN P1)"
+ },
+ {
+ "Product_Display_Name": "Office 365 Small Business Premium",
+ "String_Id": "LITEPACK_P2",
+ "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b",
+ "Service_Plan_Name": "OFFICE_PRO_PLUS_SUBSCRIPTION_SMBIZ",
+ "Service_Plan_Id": "8ca59559-e2ca-470b-b7dd-afd8c0dee963",
+ "Service_Plans_Included_Friendly_Names": "OFFICE 365 SMALL BUSINESS SUBSCRIPTION"
+ },
+ {
+ "Product_Display_Name": "Office 365 Small Business Premium",
+ "String_Id": "LITEPACK_P2",
+ "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b",
+ "Service_Plan_Name": "SHAREPOINTLITE",
+ "Service_Plan_Id": "a1f3d0a8-84c0-4ae0-bae4-685917b8ab48",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINTLITE"
+ },
+ {
+ "Product_Display_Name": "Office 365 Small Business Premium",
+ "String_Id": "LITEPACK_P2",
+ "GUID": "fc14ec4a-4169-49a4-a51e-2c852931814b",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "OneDrive for Business (Plan 1)",
+ "String_Id": "WACONEDRIVESTANDARD",
+ "GUID": "e6778190-713e-4e4f-9119-8b8238de25df",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
+ },
+ {
+ "Product_Display_Name": "OneDrive for Business (Plan 1)",
+ "String_Id": "WACONEDRIVESTANDARD",
+ "GUID": "e6778190-713e-4e4f-9119-8b8238de25df",
+ "Service_Plan_Name": "ONEDRIVESTANDARD",
+ "Service_Plan_Id": "13696edf-5a08-49f6-8134-03083ed8ba30",
+ "Service_Plans_Included_Friendly_Names": "ONEDRIVESTANDARD"
+ },
+ {
+ "Product_Display_Name": "OneDrive for Business (Plan 1)",
+ "String_Id": "WACONEDRIVESTANDARD",
+ "GUID": "e6778190-713e-4e4f-9119-8b8238de25df",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "OneDrive for Business (Plan 1)",
+ "String_Id": "WACONEDRIVESTANDARD",
+ "GUID": "e6778190-713e-4e4f-9119-8b8238de25df",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "OneDrive for Business (Plan 2)",
+ "String_Id": "WACONEDRIVEENTERPRISE",
+ "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96",
+ "Service_Plan_Name": "ONEDRIVEENTERPRISE",
+ "Service_Plan_Id": "afcafa6a-d966-4462-918c-ec0b4e0fe642",
+ "Service_Plans_Included_Friendly_Names": "ONEDRIVEENTERPRISE"
+ },
+ {
+ "Product_Display_Name": "OneDrive for Business (Plan 2)",
+ "String_Id": "WACONEDRIVEENTERPRISE",
+ "GUID": "ed01faf2-1d88-4947-ae91-45ca18703a96",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Power Apps and Logic Flows",
+ "String_Id": "POWERAPPS_INDIVIDUAL_USER",
+ "GUID": "87bbbc60-4754-4998-8c88-227dca264858",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Power Apps and Logic Flows",
+ "String_Id": "POWERAPPS_INDIVIDUAL_USER",
+ "GUID": "87bbbc60-4754-4998-8c88-227dca264858",
+ "Service_Plan_Name": "POWERFLOWSFREE",
+ "Service_Plan_Id": "0b4346bb-8dc3-4079-9dfc-513696f56039",
+ "Service_Plans_Included_Friendly_Names": "LOGIC FLOWS"
+ },
+ {
+ "Product_Display_Name": "Power Apps and Logic Flows",
+ "String_Id": "POWERAPPS_INDIVIDUAL_USER",
+ "GUID": "87bbbc60-4754-4998-8c88-227dca264858",
+ "Service_Plan_Name": "POWERVIDEOSFREE",
+ "Service_Plan_Id": "2c4ec2dc-c62d-4167-a966-52a3e6374015",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER VIDEOS BASIC"
+ },
+ {
+ "Product_Display_Name": "Power Apps and Logic Flows",
+ "String_Id": "POWERAPPS_INDIVIDUAL_USER",
+ "GUID": "87bbbc60-4754-4998-8c88-227dca264858",
+ "Service_Plan_Name": "POWERAPPSFREE",
+ "Service_Plan_Id": "e61a2945-1d4e-4523-b6e7-30ba39d20f32",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT POWERAPPS"
+ },
+ {
+ "Product_Display_Name": "PowerApps per app baseline access",
+ "String_Id": "POWERAPPS_PER_APP_IW",
+ "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2",
+ "Service_Plan_Name": "CDS_PER_APP_IWTRIAL",
+ "Service_Plan_Id": "94a669d1-84d5-4e54-8462-53b0ae2c8be5",
+ "Service_Plans_Included_Friendly_Names": "CDS Per app baseline access"
+ },
+ {
+ "Product_Display_Name": "PowerApps per app baseline access",
+ "String_Id": "POWERAPPS_PER_APP_IW",
+ "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2",
+ "Service_Plan_Name": "Flow_Per_APP_IWTRIAL",
+ "Service_Plan_Id": "dd14867e-8d31-4779-a595-304405f5ad39",
+ "Service_Plans_Included_Friendly_Names": "Flow per app baseline access"
+ },
+ {
+ "Product_Display_Name": "PowerApps per app baseline access",
+ "String_Id": "POWERAPPS_PER_APP_IW",
+ "GUID": "bf666882-9c9b-4b2e-aa2f-4789b0a52ba2",
+ "Service_Plan_Name": "POWERAPPS_PER_APP_IWTRIAL",
+ "Service_Plan_Id": "35122886-cef5-44a3-ab36-97134eabd9ba",
+ "Service_Plans_Included_Friendly_Names": "PowerApps per app baseline access"
+ },
+ {
+ "Product_Display_Name": "Power Apps per app plan",
+ "String_Id": "POWERAPPS_PER_APP",
+ "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206",
+ "Service_Plan_Name": "CDS_PER_APP",
+ "Service_Plan_Id": "9f2f00ad-21ae-4ceb-994b-d8bc7be90999",
+ "Service_Plans_Included_Friendly_Names": "CDS PowerApps per app plan"
+ },
+ {
+ "Product_Display_Name": "Power Apps per app plan",
+ "String_Id": "POWERAPPS_PER_APP",
+ "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Apps per app plan",
+ "String_Id": "POWERAPPS_PER_APP",
+ "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206",
+ "Service_Plan_Name": "POWERAPPS_PER_APP",
+ "Service_Plan_Id": "b4f657ff-d83e-4053-909d-baa2b595ec97",
+ "Service_Plans_Included_Friendly_Names": "Power Apps per App Plan"
+ },
+ {
+ "Product_Display_Name": "Power Apps per app plan",
+ "String_Id": "POWERAPPS_PER_APP",
+ "GUID": "a8ad7d2b-b8cf-49d6-b25a-69094a0be206",
+ "Service_Plan_Name": "Flow_Per_APP",
+ "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan"
+ },
+ {
+ "Product_Display_Name": "Power Apps per app plan (1 app or portal)",
+ "String_Id": "POWERAPPS_PER_APP_NEW",
+ "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Apps per app plan (1 app or portal)",
+ "String_Id": "POWERAPPS_PER_APP_NEW",
+ "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d",
+ "Service_Plan_Name": "CDSAICAPACITY_PERAPP",
+ "Service_Plan_Id": "5d7a2e9a-4ee5-4f1c-bc9f-abc481bf39d8",
+ "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per App add-on"
+ },
+ {
+ "Product_Display_Name": "Power Apps per app plan (1 app or portal)",
+ "String_Id": "POWERAPPS_PER_APP_NEW",
+ "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d",
+ "Service_Plan_Name": "DATAVERSE_POWERAPPS_PER_APP_NEW",
+ "Service_Plan_Id": "6f0e9100-ff66-41ce-96fc-3d8b7ad26887",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for Power Apps per app"
+ },
+ {
+ "Product_Display_Name": "Power Apps per app plan (1 app or portal)",
+ "String_Id": "POWERAPPS_PER_APP_NEW",
+ "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d",
+ "Service_Plan_Name": "POWERAPPS_PER_APP_NEW",
+ "Service_Plan_Id": "14f8dac2-0784-4daa-9cb2-6d670b088d64",
+ "Service_Plans_Included_Friendly_Names": "Power Apps per app"
+ },
+ {
+ "Product_Display_Name": "Power Apps per app plan (1 app or portal)",
+ "String_Id": "POWERAPPS_PER_APP_NEW",
+ "GUID": "b4d7b828-e8dc-4518-91f9-e123ae48440d",
+ "Service_Plan_Name": "Flow_Per_APP",
+ "Service_Plan_Id": "c539fa36-a64e-479a-82e1-e40ff2aa83ee",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per App Plan"
+ },
+ {
+ "Product_Display_Name": "Power Apps per user plan",
+ "String_Id": "POWERAPPS_PER_USER",
+ "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579",
+ "Service_Plan_Name": "DYN365_CDS_P2",
+ "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - P2"
+ },
+ {
+ "Product_Display_Name": "Power Apps per user plan",
+ "String_Id": "POWERAPPS_PER_USER",
+ "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Apps per user plan",
+ "String_Id": "POWERAPPS_PER_USER",
+ "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579",
+ "Service_Plan_Name": "POWERAPPS_PER_USER",
+ "Service_Plan_Id": "ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86",
+ "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan"
+ },
+ {
+ "Product_Display_Name": "Power Apps per user plan",
+ "String_Id": "POWERAPPS_PER_USER",
+ "GUID": "b30411f5-fea1-4a59-9ad9-3db7c7ead579",
+ "Service_Plan_Name": "Flow_PowerApps_PerUser",
+ "Service_Plan_Id": "dc789ed8-0170-4b65-a415-eb77d5bb350a",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan"
+ },
+ {
+ "Product_Display_Name": "Power Apps per user plan for Government",
+ "String_Id": "POWERAPPS_PER_USER_GCC",
+ "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1",
+ "Service_Plan_Name": "CDSAICAPACITY_PERUSER",
+ "Service_Plan_Id": "91f50f7b-2204-4803-acac-5cf5668b8b39",
+ "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per User add-on"
+ },
+ {
+ "Product_Display_Name": "Power Apps per user plan for Government",
+ "String_Id": "POWERAPPS_PER_USER_GCC",
+ "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1",
+ "Service_Plan_Name": "CDSAICAPACITY_PERUSER_NEW",
+ "Service_Plan_Id": "74d93933-6f22-436e-9441-66d205435abb",
+ "Service_Plans_Included_Friendly_Names": "AI Builder capacity Per User add-on"
+ },
+ {
+ "Product_Display_Name": "Power Apps per user plan for Government",
+ "String_Id": "POWERAPPS_PER_USER_GCC",
+ "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1",
+ "Service_Plan_Name": "DYN365_CDS_P2_GOV",
+ "Service_Plan_Id": "37396c73-2203-48e6-8be1-d882dae53275",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Government"
+ },
+ {
+ "Product_Display_Name": "Power Apps per user plan for Government",
+ "String_Id": "POWERAPPS_PER_USER_GCC",
+ "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Power Apps per user plan for Government",
+ "String_Id": "POWERAPPS_PER_USER_GCC",
+ "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1",
+ "Service_Plan_Name": "POWERAPPS_PER_USER_GCC",
+ "Service_Plan_Id": "8f55b472-f8bf-40a9-be30-e29919d4ddfe",
+ "Service_Plans_Included_Friendly_Names": "Power Apps per User Plan for Government"
+ },
+ {
+ "Product_Display_Name": "Power Apps per user plan for Government",
+ "String_Id": "POWERAPPS_PER_USER_GCC",
+ "GUID": "8e4c6baa-f2ff-4884-9c38-93785d0d7ba1",
+ "Service_Plan_Name": "Flow_PowerApps_PerUser_GCC",
+ "Service_Plan_Id": "8e3eb3bd-bc99-4221-81b8-8b8bc882e128",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Power Apps per User Plan for GCC"
+ },
+ {
+ "Product_Display_Name": "PowerApps Plan 1 for Government",
+ "String_Id": "POWERAPPS_P1_GOV",
+ "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd",
+ "Service_Plan_Name": "DYN365_CDS_P1_GOV",
+ "Service_Plan_Id": "ce361df2-f2a5-4713-953f-4050ba09aad8",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Government"
+ },
+ {
+ "Product_Display_Name": "PowerApps Plan 1 for Government",
+ "String_Id": "POWERAPPS_P1_GOV",
+ "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "PowerApps Plan 1 for Government",
+ "String_Id": "POWERAPPS_P1_GOV",
+ "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd",
+ "Service_Plan_Name": "FLOW_P1_GOV",
+ "Service_Plan_Id": "774da41c-a8b3-47c1-8322-b9c1ab68be9f",
+ "Service_Plans_Included_Friendly_Names": "Power Automate (Plan 1) for Government"
+ },
+ {
+ "Product_Display_Name": "PowerApps Plan 1 for Government",
+ "String_Id": "POWERAPPS_P1_GOV",
+ "GUID": "eca22b68-b31f-4e9c-a20c-4d40287bc5dd",
+ "Service_Plan_Name": "POWERAPPS_P1_GOV",
+ "Service_Plan_Id": "5ce719f1-169f-4021-8a64-7d24dcaec15f",
+ "Service_Plans_Included_Friendly_Names": "PowerApps Plan 1 for Government"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)",
+ "String_Id": "POWERAPPS_PORTALS_LOGIN_T2",
+ "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)",
+ "String_Id": "POWERAPPS_PORTALS_LOGIN_T2",
+ "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7",
+ "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN",
+ "Service_Plan_Id": "32ad3a4e-2272-43b4-88d0-80d284258208",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min)",
+ "String_Id": "POWERAPPS_PORTALS_LOGIN_T2",
+ "GUID": "57f3babd-73ce-40de-bcb2-dadbfbfff9f7",
+ "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN",
+ "Service_Plan_Id": "084747ad-b095-4a57-b41f-061d84d69f6f",
+ "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government",
+ "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC",
+ "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4",
+ "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN_GCC",
+ "Service_Plan_Id": "0f7b9a29-7990-44ff-9d05-a76be778f410",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity for GCC"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government",
+ "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC",
+ "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 2 (10 unit min) for Government",
+ "String_Id": "POWERAPPS_PORTALS_LOGIN_T2_GCC",
+ "GUID": "26c903d5-d385-4cb1-b650-8d81a643b3c4",
+ "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN_GCC",
+ "Service_Plan_Id": "bea6aef1-f52d-4cce-ae09-bed96c4b1811",
+ "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On for Government"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)",
+ "String_Id": "POWERAPPS_PORTALS_LOGIN_T3",
+ "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)",
+ "String_Id": "POWERAPPS_PORTALS_LOGIN_T3",
+ "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497",
+ "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_LOGIN",
+ "Service_Plan_Id": "32ad3a4e-2272-43b4-88d0-80d284258208",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service Power Apps Portals Login Capacity"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals login capacity add-on Tier 3 (50 unit min)",
+ "String_Id": "POWERAPPS_PORTALS_LOGIN_T3",
+ "GUID": "927d8402-8d3b-40e8-b779-34e859f7b497",
+ "Service_Plan_Name": "POWERAPPS_PORTALS_LOGIN",
+ "Service_Plan_Id": "084747ad-b095-4a57-b41f-061d84d69f6f",
+ "Service_Plans_Included_Friendly_Names": "Power Apps Portals Login Capacity Add-On"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals page view capacity add-on",
+ "String_Id": "POWERAPPS_PORTALS_PAGEVIEW",
+ "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals page view capacity add-on",
+ "String_Id": "POWERAPPS_PORTALS_PAGEVIEW",
+ "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22",
+ "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_PAGEVIEW",
+ "Service_Plan_Id": "72c30473-7845-460a-9feb-b58f216e8694",
+ "Service_Plans_Included_Friendly_Names": "CDS PowerApps Portals page view capacity add-on"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals page view capacity add-on",
+ "String_Id": "POWERAPPS_PORTALS_PAGEVIEW",
+ "GUID": "a0de5e3a-2500-4a19-b8f4-ec1c64692d22",
+ "Service_Plan_Name": "POWERAPPS_PORTALS_PAGEVIEW",
+ "Service_Plan_Id": "1c5a559a-ec06-4f76-be5b-6a315418495f",
+ "Service_Plans_Included_Friendly_Names": "Power Apps Portals Page View Capacity Add-On"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government",
+ "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC",
+ "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7",
+ "Service_Plan_Name": "CDS_POWERAPPS_PORTALS_PAGEVIEW_GCC",
+ "Service_Plan_Id": "352257a9-db78-4217-a29d-8b8d4705b014",
+ "Service_Plans_Included_Friendly_Names": "CDS PowerApps Portals page view capacity add-on for GCC"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government",
+ "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC",
+ "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Power Apps Portals page view capacity add-on for Government",
+ "String_Id": "POWERAPPS_PORTALS_PAGEVIEW_GCC",
+ "GUID": "15a64d3e-5b99-4c4b-ae8f-aa6da264bfe7",
+ "Service_Plan_Name": "POWERAPPS_PORTALS_PAGEVIEW_GCC",
+ "Service_Plan_Id": "483d5646-7724-46ac-ad71-c78b7f099d8d",
+ "Service_Plans_Included_Friendly_Names": "Power Apps Portals Page View Capacity Add-On for Government"
+ },
+ {
+ "Product_Display_Name": "Power Automate per flow plan",
+ "String_Id": "FLOW_BUSINESS_PROCESS",
+ "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b",
+ "Service_Plan_Name": "CDS_Flow_Business_Process",
+ "Service_Plan_Id": "c84e52ae-1906-4947-ac4d-6fb3e5bf7c2e",
+ "Service_Plans_Included_Friendly_Names": "Common data service for Flow per business process plan"
+ },
+ {
+ "Product_Display_Name": "Power Automate per flow plan",
+ "String_Id": "FLOW_BUSINESS_PROCESS",
+ "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Automate per flow plan",
+ "String_Id": "FLOW_BUSINESS_PROCESS",
+ "GUID": "b3a42176-0a8c-4c3f-ba4e-f2b37fe5be6b",
+ "Service_Plan_Name": "FLOW_BUSINESS_PROCESS",
+ "Service_Plan_Id": "7e017b61-a6e0-4bdc-861a-932846591f6e",
+ "Service_Plans_Included_Friendly_Names": "Flow per business process plan"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user plan",
+ "String_Id": "FLOW_PER_USER",
+ "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d",
+ "Service_Plan_Name": "DYN365_CDS_P2",
+ "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - P2"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user plan",
+ "String_Id": "FLOW_PER_USER",
+ "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user plan",
+ "String_Id": "FLOW_PER_USER",
+ "GUID": "4a51bf65-409c-4a91-b845-1121b571cc9d",
+ "Service_Plan_Name": "FLOW_PER_USER",
+ "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0",
+ "Service_Plans_Included_Friendly_Names": "Flow per user plan"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user plan dept",
+ "String_Id": "FLOW_PER_USER_DEPT",
+ "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4",
+ "Service_Plan_Name": "DYN365_CDS_P2",
+ "Service_Plan_Id": "6ea4c1ef-c259-46df-bce2-943342cd3cb2",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service - P2"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user plan dept",
+ "String_Id": "FLOW_PER_USER_DEPT",
+ "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user plan dept",
+ "String_Id": "FLOW_PER_USER_DEPT",
+ "GUID": "d80a4c5d-8f05-4b64-9926-6574b9e6aee4",
+ "Service_Plan_Name": "FLOW_PER_USER",
+ "Service_Plan_Id": "c5002c70-f725-4367-b409-f0eff4fee6c0",
+ "Service_Plans_Included_Friendly_Names": "Flow per user plan"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user plan for Government",
+ "String_Id": "FLOW_PER_USER_GCC",
+ "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e",
+ "Service_Plan_Name": "DYN365_CDS_P2_GOV",
+ "Service_Plan_Id": "37396c73-2203-48e6-8be1-d882dae53275",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Government"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user plan for Government",
+ "String_Id": "FLOW_PER_USER_GCC",
+ "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user plan for Government",
+ "String_Id": "FLOW_PER_USER_GCC",
+ "GUID": "c8803586-c136-479a-8ff3-f5f32d23a68e",
+ "Service_Plan_Name": "FLOW_PER_USER_GCC",
+ "Service_Plan_Id": "769b8bee-2779-4c5a-9456-6f4f8629fd41",
+ "Service_Plans_Included_Friendly_Names": "Power Automate per User Plan for Government"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user with attended RPA plan",
+ "String_Id": "POWERAUTOMATE_ATTENDED_RPA",
+ "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9",
+ "Service_Plan_Name": "CDS_ATTENDED_RPA",
+ "Service_Plan_Id": "3da2fd4c-1bee-4b61-a17f-94c31e5cab93",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service Attended RPA"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user with attended RPA plan",
+ "String_Id": "POWERAUTOMATE_ATTENDED_RPA",
+ "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Automate per user with attended RPA plan",
+ "String_Id": "POWERAUTOMATE_ATTENDED_RPA",
+ "GUID": "eda1941c-3c4f-4995-b5eb-e85a42175ab9",
+ "Service_Plan_Name": "POWER_AUTOMATE_ATTENDED_RPA",
+ "Service_Plan_Id": "375cd0ad-c407-49fd-866a-0bff4f8a9a4d",
+ "Service_Plans_Included_Friendly_Names": "Power Automate RPA Attended"
+ },
+ {
+ "Product_Display_Name": "Power Automate unattended RPA add-on",
+ "String_Id": "POWERAUTOMATE_UNATTENDED_RPA",
+ "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2",
+ "Service_Plan_Name": "CDS_UNATTENDED_RPA",
+ "Service_Plan_Id": "b475952f-128a-4a44-b82a-0b98a45ca7fb",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service Unattended RPA"
+ },
+ {
+ "Product_Display_Name": "Power Automate unattended RPA add-on",
+ "String_Id": "POWERAUTOMATE_UNATTENDED_RPA",
+ "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Automate unattended RPA add-on",
+ "String_Id": "POWERAUTOMATE_UNATTENDED_RPA",
+ "GUID": "3539d28c-6e35-4a30-b3a9-cd43d5d3e0e2",
+ "Service_Plan_Name": "POWER_AUTOMATE_UNATTENDED_RPA",
+ "Service_Plan_Id": "0d373a98-a27a-426f-8993-f9a425ae99c5",
+ "Service_Plans_Included_Friendly_Names": "Power Automate Unattended RPA add-on"
+ },
+ {
+ "Product_Display_Name": "Power BI",
+ "String_Id": "POWER_BI_INDIVIDUAL_USER",
+ "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power BI",
+ "String_Id": "POWER_BI_INDIVIDUAL_USER",
+ "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a",
+ "Service_Plan_Name": "SQL_IS_SSIM",
+ "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Information Services Plan 1"
+ },
+ {
+ "Product_Display_Name": "Power BI",
+ "String_Id": "POWER_BI_INDIVIDUAL_USER",
+ "GUID": "e2767865-c3c9-4f09-9f99-6eee6eef861a",
+ "Service_Plan_Name": "BI_AZURE_P1",
+ "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Power BI Reporting and Analytics Plan 1"
+ },
+ {
+ "Product_Display_Name": "Power BI (free)",
+ "String_Id": "POWER_BI_STANDARD",
+ "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power BI (free)",
+ "String_Id": "POWER_BI_STANDARD",
+ "GUID": "a403ebcc-fae0-4ca2-8c8c-7a907fd6c235",
+ "Service_Plan_Name": "BI_AZURE_P0",
+ "Service_Plan_Id": "2049e525-b859-401b-b2a0-e0a31c4b1fe4",
+ "Service_Plans_Included_Friendly_Names": "Power BI (free)"
+ },
+ {
+ "Product_Display_Name": "Power BI for Office 365 Add-On",
+ "String_Id": "POWER_BI_ADDON",
+ "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402",
+ "Service_Plan_Name": "BI_AZURE_P1",
+ "Service_Plan_Id": "2125cfd7-2110-4567-83c4-c1cd5275163d",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI REPORTING AND ANALYTICS PLAN 1"
+ },
+ {
+ "Product_Display_Name": "Power BI for Office 365 Add-On",
+ "String_Id": "POWER_BI_ADDON",
+ "GUID": "45bc2c81-6072-436a-9b0b-3b12eefbc402",
+ "Service_Plan_Name": "SQL_IS_SSIM",
+ "Service_Plan_Id": "fc0a60aa-feee-4746-a0e3-aecfe81a38dd",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT POWER BI INFORMATION SERVICES PLAN"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium P1",
+ "String_Id": "PBI_PREMIUM_P1_ADDON",
+ "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium P1",
+ "String_Id": "PBI_PREMIUM_P1_ADDON",
+ "GUID": "7b26f5ab-a763-4c00-a1ac-f6c4b5506945",
+ "Service_Plan_Name": "PBI_PREMIUM_P1_ADDON",
+ "Service_Plan_Id": "9da49a6d-707a-48a1-b44a-53dcde5267f8",
+ "Service_Plans_Included_Friendly_Names": "Power BI Premium P"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium Per User",
+ "String_Id": "PBI_PREMIUM_PER_USER",
+ "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium Per User",
+ "String_Id": "PBI_PREMIUM_PER_USER",
+ "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711",
+ "Service_Plan_Name": "BI_AZURE_P3",
+ "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c",
+ "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium Per User",
+ "String_Id": "PBI_PREMIUM_PER_USER",
+ "GUID": "c1d032e0-5619-4761-9b5c-75b6831e1711",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium Per User Add-On",
+ "String_Id": "PBI_PREMIUM_PER_USER_ADDON",
+ "GUID": "de376a03-6e5b-42ec-855f-093fb50b8ca5",
+ "Service_Plan_Name": "BI_AZURE_P3",
+ "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c",
+ "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium Per User Dept",
+ "String_Id": "PBI_PREMIUM_PER_USER_DEPT",
+ "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium Per User Dept",
+ "String_Id": "PBI_PREMIUM_PER_USER_DEPT",
+ "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4",
+ "Service_Plan_Name": "BI_AZURE_P3",
+ "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c",
+ "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium Per User Dept",
+ "String_Id": "PBI_PREMIUM_PER_USER_DEPT",
+ "GUID": "f168a3fb-7bcf-4a27-98c3-c235ea4b78b4",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium Per User for Faculty",
+ "String_Id": "PBI_PREMIUM_PER_USER_FACULTY",
+ "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium Per User for Faculty",
+ "String_Id": "PBI_PREMIUM_PER_USER_FACULTY",
+ "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5",
+ "Service_Plan_Name": "BI_AZURE_P3",
+ "Service_Plan_Id": "0bf3c642-7bb5-4ccc-884e-59d09df0266c",
+ "Service_Plans_Included_Friendly_Names": "Power BI Premium Per User"
+ },
+ {
+ "Product_Display_Name": "Power BI Premium Per User for Faculty",
+ "String_Id": "PBI_PREMIUM_PER_USER_FACULTY",
+ "GUID": "060d8061-f606-4e69-a4e7-e8fff75ea1f5",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Power BI Pro",
+ "String_Id": "POWER_BI_PRO",
+ "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power BI Pro",
+ "String_Id": "POWER_BI_PRO",
+ "GUID": "f8a1db68-be16-40ed-86d5-cb42ce701560",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Power BI Pro CE",
+ "String_Id": "POWER_BI_PRO_CE",
+ "GUID": "420af87e-8177-4146-a780-3786adaffbca",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power BI Pro CE",
+ "String_Id": "POWER_BI_PRO_CE",
+ "GUID": "420af87e-8177-4146-a780-3786adaffbca",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Power BI Pro Dept",
+ "String_Id": "POWER_BI_PRO_DEPT",
+ "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power BI Pro Dept",
+ "String_Id": "POWER_BI_PRO_DEPT",
+ "GUID": "3a6a908c-09c5-406a-8170-8ebb63c42882",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Power BI Pro for Faculty",
+ "String_Id": "POWER_BI_PRO_FACULTY",
+ "GUID": "de5f128b-46d7-4cfc-b915-a89ba060ea56",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power BI Pro for Faculty",
+ "String_Id": "POWER_BI_PRO_FACULTY",
+ "GUID": "de5f128b-46d7-4cfc-b915-a89ba060ea56",
+ "Service_Plan_Name": "BI_AZURE_P2",
+ "Service_Plan_Id": "70d33638-9c74-4d01-bfd3-562de28bd4ba",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro"
+ },
+ {
+ "Product_Display_Name": "Power BI Pro for GCC",
+ "String_Id": "POWERBI_PRO_GOV",
+ "GUID": "f0612879-44ea-47fb-baf0-3d76d9235576",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Power BI Pro for GCC",
+ "String_Id": "POWERBI_PRO_GOV",
+ "GUID": "f0612879-44ea-47fb-baf0-3d76d9235576",
+ "Service_Plan_Name": "BI_AZURE_P_2_GOV",
+ "Service_Plan_Id": "944e9726-f011-4353-b654-5f7d2663db76",
+ "Service_Plans_Included_Friendly_Names": "Power BI Pro for Government"
+ },
+ {
+ "Product_Display_Name": "Power Pages vTrial for Makers",
+ "String_Id": "Power_Pages_vTrial_for_Makers",
+ "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Power Pages vTrial for Makers",
+ "String_Id": "Power_Pages_vTrial_for_Makers",
+ "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167",
+ "Service_Plan_Name": "DYN365_CDS_VIRAL",
+ "Service_Plan_Id": "17ab22cd-a0b3-4536-910a-cb6eb12696c0",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Power Pages vTrial for Makers",
+ "String_Id": "Power_Pages_vTrial_for_Makers",
+ "GUID": "3f9f06f5-3c31-472c-985f-62d9c10ec167",
+ "Service_Plan_Name": "POWER_PAGES_VTRIAL",
+ "Service_Plan_Id": "6817d093-2d30-4249-8bd6-774f01efa78c",
+ "Service_Plans_Included_Friendly_Names": "Power Pages vTrial for Makers"
+ },
+ {
+ "Product_Display_Name": "Power Virtual Agent",
+ "String_Id": "VIRTUAL_AGENT_BASE",
+ "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f",
+ "Service_Plan_Name": "CDS_VIRTUAL_AGENT_BASE",
+ "Service_Plan_Id": "0a0a23fa-fea1-4195-bb89-b4789cb12f7f",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Virtual Agent Base"
+ },
+ {
+ "Product_Display_Name": "Power Virtual Agent",
+ "String_Id": "VIRTUAL_AGENT_BASE",
+ "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f",
+ "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_BASE",
+ "Service_Plan_Id": "4b81a949-69a1-4409-ad34-9791a6ec88aa",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent"
+ },
+ {
+ "Product_Display_Name": "Power Virtual Agent",
+ "String_Id": "VIRTUAL_AGENT_BASE",
+ "GUID": "e4e55366-9635-46f4-a907-fc8c3b5ec81f",
+ "Service_Plan_Name": "VIRTUAL_AGENT_BASE",
+ "Service_Plan_Id": "f6934f16-83d3-4f3b-ad27-c6e9c187b260",
+ "Service_Plans_Included_Friendly_Names": "Virtual Agent Base"
+ },
+ {
+ "Product_Display_Name": "Power Virtual Agent User License",
+ "String_Id": "VIRTUAL_AGENT_USL",
+ "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa",
+ "Service_Plan_Name": "CDS_VIRTUAL_AGENT_USL",
+ "Service_Plan_Id": "cb867b3c-7f38-4d0d-99ce-e29cd69812c8",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service"
+ },
+ {
+ "Product_Display_Name": "Power Virtual Agent User License",
+ "String_Id": "VIRTUAL_AGENT_USL",
+ "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa",
+ "Service_Plan_Name": "FLOW_VIRTUAL_AGENT_USL",
+ "Service_Plan_Id": "82f141c9-2e87-4f43-8cb2-12d2701dc6b3",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Virtual Agent"
+ },
+ {
+ "Product_Display_Name": "Power Virtual Agent User License",
+ "String_Id": "VIRTUAL_AGENT_USL",
+ "GUID": "4b74a65c-8b4a-4fc8-9f6b-5177ed11ddfa",
+ "Service_Plan_Name": "VIRTUAL_AGENT_USL",
+ "Service_Plan_Id": "1263586c-59a4-4ad0-85e1-d50bc7149501",
+ "Service_Plans_Included_Friendly_Names": "Virtual Agent"
+ },
+ {
+ "Product_Display_Name": "Power Virtual Agents Viral Trial",
+ "String_Id": "CCIBOTS_PRIVPREV_VIRAL",
+ "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80",
+ "Service_Plan_Name": "DYN365_CDS_CCI_BOTS",
+ "Service_Plan_Id": "cf7034ed-348f-42eb-8bbd-dddeea43ee81",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for CCI Bots"
+ },
+ {
+ "Product_Display_Name": "Power Virtual Agents Viral Trial",
+ "String_Id": "CCIBOTS_PRIVPREV_VIRAL",
+ "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80",
+ "Service_Plan_Name": "CCIBOTS_PRIVPREV_VIRAL",
+ "Service_Plan_Id": "ce312d15-8fdf-44c0-9974-a25a177125ee",
+ "Service_Plans_Included_Friendly_Names": "Dynamics 365 AI for Customer Service Virtual Agents Viral"
+ },
+ {
+ "Product_Display_Name": "Power Virtual Agents Viral Trial",
+ "String_Id": "CCIBOTS_PRIVPREV_VIRAL",
+ "GUID": "606b54a9-78d8-4298-ad8b-df6ef4481c80",
+ "Service_Plan_Name": "FLOW_CCI_BOTS",
+ "Service_Plan_Id": "5d798708-6473-48ad-9776-3acc301c40af",
+ "Service_Plans_Included_Friendly_Names": "Flow for CCI Bots"
+ },
+ {
+ "Product_Display_Name": "Privacy Management ? risk",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK",
+ "GUID": "e42bc969-759a-4820-9283-6b73085b68e6",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Privacy Management ? risk",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK",
+ "GUID": "e42bc969-759a-4820-9283-6b73085b68e6",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK",
+ "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3",
+ "Service_Plans_Included_Friendly_Names": "Priva - Risk"
+ },
+ {
+ "Product_Display_Name": "Privacy Management ? risk",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK",
+ "GUID": "e42bc969-759a-4820-9283-6b73085b68e6",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE",
+ "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1",
+ "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU",
+ "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU",
+ "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK",
+ "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3",
+ "Service_Plans_Included_Friendly_Names": "Priva - Risk"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_EDU",
+ "GUID": "dcdbaae7-d8c9-40cb-8bb1-62737b9e5a86",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE",
+ "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1",
+ "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC",
+ "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC",
+ "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK",
+ "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3",
+ "Service_Plans_Included_Friendly_Names": "Priva - Risk"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_GCC",
+ "GUID": "046f7d3b-9595-4685-a2e8-a2832d2b26aa",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE",
+ "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1",
+ "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk_USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD",
+ "GUID": "83b30692-0d09-435c-a455-2ab220d504b9",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk_USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD",
+ "GUID": "83b30692-0d09-435c-a455-2ab220d504b9",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK",
+ "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3",
+ "Service_Plans_Included_Friendly_Names": "Priva - Risk"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk_USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_DOD",
+ "GUID": "83b30692-0d09-435c-a455-2ab220d504b9",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE",
+ "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1",
+ "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH",
+ "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c",
+ "Service_Plan_Name": "MIP_S_Exchange",
+ "Service_Plan_Id": "cd31b152-6326-4d1b-ae1b-997b625182e6",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH",
+ "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK",
+ "Service_Plan_Id": "f281fb1f-99a7-46ab-9edb-ffd74e260ed3",
+ "Service_Plans_Included_Friendly_Names": "Priva - Risk"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - risk_USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_RISK_USGOV_GCCHIGH",
+ "GUID": "787d7e75-29ca-4b90-a3a9-0b780b35367c",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_RISK_EXCHANGE",
+ "Service_Plan_Id": "ebb17a6e-6002-4f65-acb0-d386480cebc1",
+ "Service_Plans_Included_Friendly_Names": "Priva - Risk (Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2",
+ "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2",
+ "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1",
+ "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2",
+ "GUID": "d9020d1c-94ef-495a-b6de-818cbbcaa3b8",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1",
+ "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2",
+ "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2",
+ "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1",
+ "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_EDU_V2",
+ "GUID": "475e3e81-3c75-4e07-95b6-2fed374536c8",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1",
+ "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC",
+ "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC",
+ "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1",
+ "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_GCC",
+ "GUID": "017fb6f8-00dd-4025-be2b-4eff067cae72",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1",
+ "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD",
+ "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD",
+ "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1",
+ "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_DOD",
+ "GUID": "d3c841f3-ea93-4da2-8040-6f2348d20954",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1",
+ "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH",
+ "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH",
+ "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_1",
+ "Service_Plan_Id": "93d24177-c2c3-408a-821d-3d25dfa66e7a",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (1) USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_1_V2_USGOV_GCCHIGH",
+ "GUID": "706d2425-6170-4818-ba08-2ad8f1d2d078",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_1",
+ "Service_Plan_Id": "07a4098c-3f2d-427f-bfe2-5889ed75dd7b",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (1)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2",
+ "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2",
+ "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10",
+ "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2",
+ "GUID": "78ea43ac-9e5d-474f-8537-4abb82dafe27",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10",
+ "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2",
+ "GUID": "e001d9f1-5047-4ebf-8927-148530491f83",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2",
+ "GUID": "e001d9f1-5047-4ebf-8927-148530491f83",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10",
+ "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_EDU_V2",
+ "GUID": "e001d9f1-5047-4ebf-8927-148530491f83",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10",
+ "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC",
+ "GUID": "a056b037-1fa0-4133-a583-d05cff47d551",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC",
+ "GUID": "a056b037-1fa0-4133-a583-d05cff47d551",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10",
+ "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_GCC",
+ "GUID": "a056b037-1fa0-4133-a583-d05cff47d551",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10",
+ "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD",
+ "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD",
+ "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10",
+ "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_DOD",
+ "GUID": "ab28dfa1-853a-4f54-9315-f5146975ac9a",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10",
+ "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH",
+ "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH",
+ "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_10",
+ "Service_Plan_Id": "f0241705-7b44-4401-a6b6-7055062b5b03",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (10) USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_10_V2_USGOV_GCCHIGH",
+ "GUID": "f6aa3b3d-62f4-4c1d-a44f-0550f40f729c",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_10",
+ "Service_Plan_Id": "74853901-d7a9-428e-895d-f4c8687a9f0b",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (10)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (50)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50",
+ "GUID": "c416b349-a83c-48cb-9529-c420841dedd6",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (50)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50",
+ "GUID": "c416b349-a83c-48cb-9529-c420841dedd6",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR",
+ "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (50)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50",
+ "GUID": "c416b349-a83c-48cb-9529-c420841dedd6",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE",
+ "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (50)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2",
+ "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (50)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2",
+ "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR",
+ "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (50)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_V2",
+ "GUID": "f6c82f13-9554-4da1-bed3-c024cc906e02",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE",
+ "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2",
+ "GUID": "ed45d397-7d61-4110-acc0-95674917bb14",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2",
+ "GUID": "ed45d397-7d61-4110-acc0-95674917bb14",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR",
+ "Service_Plan_Id": "8bbd1fea-6dc6-4aef-8abc-79af22d746e4",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (50) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_50_EDU_V2",
+ "GUID": "ed45d397-7d61-4110-acc0-95674917bb14",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE",
+ "Service_Plan_Id": "7ca7f875-98db-4458-ab1b-47503826dd73",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2",
+ "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2",
+ "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100",
+ "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100)",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2",
+ "GUID": "cf4c6c3b-f863-4940-97e8-1d25e912f4c4",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100",
+ "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2",
+ "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2",
+ "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100",
+ "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) for EDU",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_EDU_V2",
+ "GUID": "9b85b4f0-92d9-4c3d-b230-041520cb1046",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100",
+ "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC",
+ "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC",
+ "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100",
+ "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) GCC",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_GCC",
+ "GUID": "91bbc479-4c2c-4210-9c88-e5b468c35b83",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100",
+ "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD",
+ "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD",
+ "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100",
+ "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_DOD",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_DOD",
+ "GUID": "ba6e69d5-ba2e-47a7-b081-66c1b8e7e7d4",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100",
+ "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH",
+ "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f",
+ "Service_Plan_Name": "MIP_S_EXCHANGE_CO",
+ "Service_Plan_Id": "5b96ffc4-3853-4cf4-af50-e38505080f6b",
+ "Service_Plans_Included_Friendly_Names": "Data Classification in Microsoft 365 - Company Level"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH",
+ "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_EXCHANGE_100",
+ "Service_Plan_Id": "5c221cec-2c39-435b-a1e2-7cdd7fac5913",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100 - Exchange)"
+ },
+ {
+ "Product_Display_Name": "Privacy Management - subject rights request (100) USGOV_GCCHIGH",
+ "String_Id": "PRIVACY_MANAGEMENT_SUB_RIGHTS_REQ_100_V2_USGOV_GCCHIGH",
+ "GUID": "cee36ce4-cc31-481f-8cab-02765d3e441f",
+ "Service_Plan_Name": "PRIVACY_MANGEMENT_DSR_100",
+ "Service_Plan_Id": "500f440d-167e-4030-a3a7-8cd35421fbd8",
+ "Service_Plans_Included_Friendly_Names": "Privacy Management - Subject Rights Request (100)"
+ },
+ {
+ "Product_Display_Name": "Project for Office 365",
+ "String_Id": "PROJECTCLIENT",
+ "GUID": "a10d5e58-74da-4312-95c8-76be4e5b75a0",
+ "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
+ "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
+ "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials",
+ "String_Id": "PROJECTESSENTIALS",
+ "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials",
+ "String_Id": "PROJECTESSENTIALS",
+ "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan E1)"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials",
+ "String_Id": "PROJECTESSENTIALS",
+ "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the web"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials",
+ "String_Id": "PROJECTESSENTIALS",
+ "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials",
+ "String_Id": "PROJECTESSENTIALS",
+ "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials",
+ "String_Id": "PROJECTESSENTIALS",
+ "GUID": "776df282-9fc0-4862-99e2-70e561b9909e",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials for Faculty",
+ "String_Id": "PROJECTESSENTIALS_FACULTY",
+ "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials for Faculty",
+ "String_Id": "PROJECTESSENTIALS_FACULTY",
+ "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials for Faculty",
+ "String_Id": "PROJECTESSENTIALS_FACULTY",
+ "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials for Faculty",
+ "String_Id": "PROJECTESSENTIALS_FACULTY",
+ "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials for Faculty",
+ "String_Id": "PROJECTESSENTIALS_FACULTY",
+ "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials for Faculty",
+ "String_Id": "PROJECTESSENTIALS_FACULTY",
+ "GUID": "e433b246-63e7-4d0b-9efa-7940fa3264d6",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials for GCC",
+ "String_Id": "PROJECTESSENTIALS_GOV",
+ "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials for GCC",
+ "String_Id": "PROJECTESSENTIALS_GOV",
+ "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e",
+ "Service_Plan_Name": "SHAREPOINTWAC_GOV",
+ "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Government"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials for GCC",
+ "String_Id": "PROJECTESSENTIALS_GOV",
+ "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS_GOV",
+ "Service_Plan_Id": "fdcb7064-f45c-46fa-b056-7e0e9fdf4bf3",
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials for Government"
+ },
+ {
+ "Product_Display_Name": "Project Online Essentials for GCC",
+ "String_Id": "PROJECTESSENTIALS_GOV",
+ "GUID": "ca1a159a-f09e-42b8-bb82-cb6420f54c8e",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
+ "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
+ },
+ {
+ "Product_Display_Name": "Project Online Premium",
+ "String_Id": "PROJECTPREMIUM",
+ "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a",
+ "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
+ "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
+ "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT"
+ },
+ {
+ "Product_Display_Name": "Project Online Premium",
+ "String_Id": "PROJECTPREMIUM",
+ "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a",
+ "Service_Plan_Name": "SHAREPOINT_PROJECT",
+ "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT"
+ },
+ {
+ "Product_Display_Name": "Project Online Premium",
+ "String_Id": "PROJECTPREMIUM",
+ "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Project Online Premium",
+ "String_Id": "PROJECTPREMIUM",
+ "GUID": "09015f9f-377f-4538-bbb5-f75ceb09358a",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Project Online Premium Without Project Client",
+ "String_Id": "PROJECTONLINE_PLAN_1",
+ "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
+ },
+ {
+ "Product_Display_Name": "Project Online Premium Without Project Client",
+ "String_Id": "PROJECTONLINE_PLAN_1",
+ "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3",
+ "Service_Plan_Name": "SHAREPOINT_PROJECT",
+ "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT"
+ },
+ {
+ "Product_Display_Name": "Project Online Premium Without Project Client",
+ "String_Id": "PROJECTONLINE_PLAN_1",
+ "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Project Online Premium Without Project Client",
+ "String_Id": "PROJECTONLINE_PLAN_1",
+ "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Project Online Premium Without Project Client",
+ "String_Id": "PROJECTONLINE_PLAN_1",
+ "GUID": "2db84718-652c-47a7-860c-f10d8abbdae3",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Project Online With Project for Office 365",
+ "String_Id": "PROJECTONLINE_PLAN_2",
+ "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
+ "Service_Plan_Name": "FORMS_PLAN_E1",
+ "Service_Plan_Id": "159f4cd6-e380-449f-a816-af1a9ef76344",
+ "Service_Plans_Included_Friendly_Names": "MICROSOFT FORMS (PLAN E1)"
+ },
+ {
+ "Product_Display_Name": "Project Online With Project for Office 365",
+ "String_Id": "PROJECTONLINE_PLAN_2",
+ "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
+ "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
+ "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
+ "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE DESKTOP CLIENT"
+ },
+ {
+ "Product_Display_Name": "Project Online With Project for Office 365",
+ "String_Id": "PROJECTONLINE_PLAN_2",
+ "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
+ "Service_Plan_Name": "SHAREPOINT_PROJECT",
+ "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT_PROJECT"
+ },
+ {
+ "Product_Display_Name": "Project Online With Project for Office 365",
+ "String_Id": "PROJECTONLINE_PLAN_2",
+ "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Project Online With Project for Office 365",
+ "String_Id": "PROJECTONLINE_PLAN_2",
+ "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "OFFICE ONLINE"
+ },
+ {
+ "Product_Display_Name": "Project Online With Project for Office 365",
+ "String_Id": "PROJECTONLINE_PLAN_2",
+ "GUID": "f82a60b8-1ee3-4cfb-a4fe-1c6a53c2656c",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "SWAY"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1",
+ "String_Id": "PROJECT_P1",
+ "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
+ "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1",
+ "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e",
+ "Service_Plans_Included_Friendly_Names": "COMMON DATA SERVICE FOR PROJECT P1"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1",
+ "String_Id": "PROJECT_P1",
+ "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1",
+ "String_Id": "PROJECT_P1",
+ "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
+ "Service_Plan_Name": "Power_Automate_For_Project_P1",
+ "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1",
+ "Service_Plans_Included_Friendly_Names": "POWER AUTOMATE FOR PROJECT P1"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1",
+ "String_Id": "PROJECT_P1",
+ "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "PROJECT ONLINE ESSENTIALS"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1",
+ "String_Id": "PROJECT_P1",
+ "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
+ "Service_Plan_Name": "PROJECT_P1",
+ "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9",
+ "Service_Plans_Included_Friendly_Names": "PROJECT P1"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1",
+ "String_Id": "PROJECT_P1",
+ "GUID": "beb6439c-caad-48d3-bf46-0c82871e12be",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD",
+ "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1 (for Department)",
+ "String_Id": "PROJECT_PLAN1_DEPT",
+ "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
+ "Service_Plan_Name": "DYN365_CDS_FOR_PROJECT_P1",
+ "Service_Plan_Id": "a6f677b3-62a6-4644-93e7-2a85d240845e",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Project P1"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1 (for Department)",
+ "String_Id": "PROJECT_PLAN1_DEPT",
+ "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1 (for Department)",
+ "String_Id": "PROJECT_PLAN1_DEPT",
+ "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
+ "Service_Plan_Name": "Power_Automate_For_Project_P1",
+ "Service_Plan_Id": "00283e6b-2bd8-440f-a2d5-87358e4c89a1",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Project P1"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1 (for Department)",
+ "String_Id": "PROJECT_PLAN1_DEPT",
+ "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
+ "Service_Plan_Name": "PROJECT_ESSENTIALS",
+ "Service_Plan_Id": "1259157c-8581-4875-bca7-2ffb18c51bda",
+ "Service_Plans_Included_Friendly_Names": "Project Online Essentials"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1 (for Department)",
+ "String_Id": "PROJECT_PLAN1_DEPT",
+ "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
+ "Service_Plan_Name": "PROJECT_P1",
+ "Service_Plan_Id": "4a12c688-56c6-461a-87b1-30d6f32136f9",
+ "Service_Plans_Included_Friendly_Names": "Project P1"
+ },
+ {
+ "Product_Display_Name": "Project Plan 1 (for Department)",
+ "String_Id": "PROJECT_PLAN1_DEPT",
+ "GUID": "84cd610f-a3f8-4beb-84ab-d9d2c902c6c9",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD",
+ "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT STANDARD"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3",
+ "String_Id": "PROJECTPROFESSIONAL",
+ "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
+ "Service_Plan_Name": "DYN365_CDS_PROJECT",
+ "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Project"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3",
+ "String_Id": "PROJECTPROFESSIONAL",
+ "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3",
+ "String_Id": "PROJECTPROFESSIONAL",
+ "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
+ "Service_Plan_Name": "FLOW_FOR_PROJECT",
+ "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d",
+ "Service_Plans_Included_Friendly_Names": "Flow for Project"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3",
+ "String_Id": "PROJECTPROFESSIONAL",
+ "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the web"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3",
+ "String_Id": "PROJECTPROFESSIONAL",
+ "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
+ "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
+ "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
+ "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3",
+ "String_Id": "PROJECTPROFESSIONAL",
+ "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
+ "Service_Plan_Name": "SHAREPOINT_PROJECT",
+ "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
+ "Service_Plans_Included_Friendly_Names": "Project Online Service"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3",
+ "String_Id": "PROJECTPROFESSIONAL",
+ "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
+ "Service_Plan_Name": "PROJECT_PROFESSIONAL",
+ "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7",
+ "Service_Plans_Included_Friendly_Names": "Project P3"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3",
+ "String_Id": "PROJECTPROFESSIONAL",
+ "GUID": "53818b1b-4a27-454b-8896-0dba576410e6",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 (for Department)",
+ "String_Id": "PROJECT_PLAN3_DEPT",
+ "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
+ "Service_Plan_Name": "DYN365_CDS_PROJECT",
+ "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Project"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 (for Department)",
+ "String_Id": "PROJECT_PLAN3_DEPT",
+ "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 (for Department)",
+ "String_Id": "PROJECT_PLAN3_DEPT",
+ "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
+ "Service_Plan_Name": "FLOW_FOR_PROJECT",
+ "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d",
+ "Service_Plans_Included_Friendly_Names": "Flow for Project"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 (for Department)",
+ "String_Id": "PROJECT_PLAN3_DEPT",
+ "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
+ "Service_Plan_Name": "SHAREPOINTWAC",
+ "Service_Plan_Id": "e95bec33-7c88-4a70-8e19-b10bd9d0c014",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 (for Department)",
+ "String_Id": "PROJECT_PLAN3_DEPT",
+ "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
+ "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
+ "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
+ "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 (for Department)",
+ "String_Id": "PROJECT_PLAN3_DEPT",
+ "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
+ "Service_Plan_Name": "SHAREPOINT_PROJECT",
+ "Service_Plan_Id": "fe71d6c3-a2ea-4499-9778-da042bf08063",
+ "Service_Plans_Included_Friendly_Names": "Project Online Service"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 (for Department)",
+ "String_Id": "PROJECT_PLAN3_DEPT",
+ "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
+ "Service_Plan_Name": "PROJECT_PROFESSIONAL",
+ "Service_Plan_Id": "818523f5-016b-4355-9be8-ed6944946ea7",
+ "Service_Plans_Included_Friendly_Names": "Project P3"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 (for Department)",
+ "String_Id": "PROJECT_PLAN3_DEPT",
+ "GUID": "46102f44-d912-47e7-b0ca-1bd7b70ada3b",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for Faculty",
+ "String_Id": "PROJECTPROFESSIONAL_FACULTY",
+ "GUID": "46974aed-363e-423c-9e6a-951037cec495",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for Faculty",
+ "String_Id": "PROJECTPROFESSIONAL_FACULTY",
+ "GUID": "46974aed-363e-423c-9e6a-951037cec495",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for Faculty",
+ "String_Id": "PROJECTPROFESSIONAL_FACULTY",
+ "GUID": "46974aed-363e-423c-9e6a-951037cec495",
+ "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION",
+ "Service_Plan_Id": "fafd7243-e5c1-4a3a-9e40-495efcb1d3c3",
+ "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for Faculty",
+ "String_Id": "PROJECTPROFESSIONAL_FACULTY",
+ "GUID": "46974aed-363e-423c-9e6a-951037cec495",
+ "Service_Plan_Name": "SHAREPOINT_PROJECT_EDU",
+ "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90",
+ "Service_Plans_Included_Friendly_Names": "Project Online Service for Education"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for Faculty",
+ "String_Id": "PROJECTPROFESSIONAL_FACULTY",
+ "GUID": "46974aed-363e-423c-9e6a-951037cec495",
+ "Service_Plan_Name": "PROJECT_PROFESSIONAL_FACULTY",
+ "Service_Plan_Id": "22572403-045f-432b-a660-af949c0a77b5",
+ "Service_Plans_Included_Friendly_Names": "Project P3 for Faculty"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for Faculty",
+ "String_Id": "PROJECTPROFESSIONAL_FACULTY",
+ "GUID": "46974aed-363e-423c-9e6a-951037cec495",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for Faculty",
+ "String_Id": "PROJECTPROFESSIONAL_FACULTY",
+ "GUID": "46974aed-363e-423c-9e6a-951037cec495",
+ "Service_Plan_Name": "DYN365_CDS_PROJECT",
+ "Service_Plan_Id": "50554c47-71d9-49fd-bc54-42a2765c555c",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for Project"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for Faculty",
+ "String_Id": "PROJECTPROFESSIONAL_FACULTY",
+ "GUID": "46974aed-363e-423c-9e6a-951037cec495",
+ "Service_Plan_Name": "FLOW_FOR_PROJECT",
+ "Service_Plan_Id": "fa200448-008c-4acb-abd4-ea106ed2199d",
+ "Service_Plans_Included_Friendly_Names": "Power Automate for Project"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for GCC",
+ "String_Id": "PROJECTPROFESSIONAL_GOV",
+ "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065",
+ "Service_Plan_Name": "SHAREPOINTWAC_GOV",
+ "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
+ "Service_Plans_Included_Friendly_Names": "Office for the web (Government)"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for GCC",
+ "String_Id": "PROJECTPROFESSIONAL_GOV",
+ "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065",
+ "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV",
+ "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067",
+ "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client for Government"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for GCC",
+ "String_Id": "PROJECTPROFESSIONAL_GOV",
+ "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065",
+ "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV",
+ "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472",
+ "Service_Plans_Included_Friendly_Names": "Project Online Service for Government"
+ },
+ {
+ "Product_Display_Name": "Project Plan 3 for GCC",
+ "String_Id": "PROJECTPROFESSIONAL_GOV",
+ "GUID": "074c6829-b3a0-430a-ba3d-aca365e57065",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
+ "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
+ },
+ {
+ "Product_Display_Name": "Project Plan 5 for GCC",
+ "String_Id": "PROJECTPREMIUM_GOV",
+ "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Project Plan 5 for GCC",
+ "String_Id": "PROJECTPREMIUM_GOV",
+ "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6",
+ "Service_Plan_Name": "SHAREPOINTWAC_GOV",
+ "Service_Plan_Id": "8f9f0f3b-ca90-406c-a842-95579171f8ec",
+ "Service_Plans_Included_Friendly_Names": "Office for the web (Government)"
+ },
+ {
+ "Product_Display_Name": "Project Plan 5 for GCC",
+ "String_Id": "PROJECTPREMIUM_GOV",
+ "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6",
+ "Service_Plan_Name": "PROJECT_CLIENT_SUBSCRIPTION_GOV",
+ "Service_Plan_Id": "45c6831b-ad74-4c7f-bd03-7c2b3fa39067",
+ "Service_Plans_Included_Friendly_Names": "Project Online Desktop Client for Government"
+ },
+ {
+ "Product_Display_Name": "Project Plan 5 for GCC",
+ "String_Id": "PROJECTPREMIUM_GOV",
+ "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6",
+ "Service_Plan_Name": "SHAREPOINT_PROJECT_GOV",
+ "Service_Plan_Id": "e57afa78-1f19-4542-ba13-b32cd4d8f472",
+ "Service_Plans_Included_Friendly_Names": "Project Online Service for Government"
+ },
+ {
+ "Product_Display_Name": "Project Plan 5 for GCC",
+ "String_Id": "PROJECTPREMIUM_GOV",
+ "GUID": "f2230877-72be-4fec-b1ba-7156d6f75bd6",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_GOV",
+ "Service_Plan_Id": "153f85dd-d912-4762-af6c-d6e0fb4f6692",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Plan 2G"
+ },
+ {
+ "Product_Display_Name": "Project Plan 5 without Project Client for Faculty",
+ "String_Id": "PROJECTONLINE_PLAN_1_FACULTY",
+ "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Project Plan 5 without Project Client for Faculty",
+ "String_Id": "PROJECTONLINE_PLAN_1_FACULTY",
+ "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac",
+ "Service_Plan_Name": "OFFICE_FORMS_PLAN_2",
+ "Service_Plan_Id": "9b5de886-f035-4ff2-b3d8-c9127bea3620",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Forms (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Project Plan 5 without Project Client for Faculty",
+ "String_Id": "PROJECTONLINE_PLAN_1_FACULTY",
+ "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac",
+ "Service_Plan_Name": "SHAREPOINTWAC_EDU",
+ "Service_Plan_Id": "e03c7e47-402c-463c-ab25-949079bedb21",
+ "Service_Plans_Included_Friendly_Names": "Office for the Web for Education"
+ },
+ {
+ "Product_Display_Name": "Project Plan 5 without Project Client for Faculty",
+ "String_Id": "PROJECTONLINE_PLAN_1_FACULTY",
+ "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac",
+ "Service_Plan_Name": "SHAREPOINT_PROJECT_EDU",
+ "Service_Plan_Id": "664a2fed-6c7a-468e-af35-d61740f0ec90",
+ "Service_Plans_Included_Friendly_Names": "Project Online Service for Education"
+ },
+ {
+ "Product_Display_Name": "Project Plan 5 without Project Client for Faculty",
+ "String_Id": "PROJECTONLINE_PLAN_1_FACULTY",
+ "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE_EDU",
+ "Service_Plan_Id": "63038b2c-28d0-45f6-bc36-33062963b498",
+ "Service_Plans_Included_Friendly_Names": "SharePoint (Plan 2) for Education"
+ },
+ {
+ "Product_Display_Name": "Project Plan 5 without Project Client for Faculty",
+ "String_Id": "PROJECTONLINE_PLAN_1_FACULTY",
+ "GUID": "b732e2a7-5694-4dff-a0f2-9d9204c794ac",
+ "Service_Plan_Name": "SWAY",
+ "Service_Plan_Id": "a23b959c-7ce8-4e57-9140-b90eb88a9e97",
+ "Service_Plans_Included_Friendly_Names": "Sway"
+ },
+ {
+ "Product_Display_Name": "Rights Management Adhoc",
+ "String_Id": "RIGHTSMANAGEMENT_ADHOC",
+ "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Rights Management Adhoc",
+ "String_Id": "RIGHTSMANAGEMENT_ADHOC",
+ "GUID": "8c4ce438-32a7-4ac5-91a6-e22ae08d9c8b",
+ "Service_Plan_Name": "RMS_S_ADHOC",
+ "Service_Plan_Id": "7a39d7dd-e456-4e09-842a-0204ee08187b",
+ "Service_Plans_Included_Friendly_Names": "Rights Management Adhoc"
+ },
+ {
+ "Product_Display_Name": "Rights Management Service Basic Content Protection",
+ "String_Id": "RMSBASIC",
+ "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Rights Management Service Basic Content Protection",
+ "String_Id": "RMSBASIC",
+ "GUID": "093e8d14-a334-43d9-93e3-30589a8b47d0",
+ "Service_Plan_Name": "RMS_S_BASIC",
+ "Service_Plan_Id": "31cf2cfc-6b0d-4adc-a336-88b724ed8122",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Azure Rights Management Service"
+ },
+ {
+ "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management",
+ "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES",
+ "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Sensor Data Intelligence Additional Machines Add-in for Dynamics 365 Supply Chain Management",
+ "String_Id": "DYN365_IOT_INTELLIGENCE_ADDL_MACHINES",
+ "GUID": "08e18479-4483-4f70-8f17-6f92156d8ea9",
+ "Service_Plan_Name": "D365_IOTFORSCM_ADDITIONAL",
+ "Service_Plan_Id": "a5f38206-2f48-4d83-9957-525f4e75e9c0",
+ "Service_Plans_Included_Friendly_Names": "IoT Intelligence Add-in Additional Machines"
+ },
+ {
+ "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management",
+ "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO",
+ "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Sensor Data Intelligence Scenario Add-in for Dynamics 365 Supply Chain Management",
+ "String_Id": "DYN365_IOT_INTELLIGENCE_SCENARIO",
+ "GUID": "9ea4bdef-a20b-4668-b4a7-73e1f7696e0a",
+ "Service_Plan_Name": "D365_IOTFORSCM",
+ "Service_Plan_Id": "83dd9619-c7d5-44da-9250-dc4ee79fff7e",
+ "Service_Plans_Included_Friendly_Names": "Iot Intelligence Add-in for D365 Supply Chain Management"
+ },
+ {
+ "Product_Display_Name": "SharePoint Online (Plan 1)",
+ "String_Id": "SHAREPOINTSTANDARD",
+ "GUID": "1fc08a02-8b3d-43b9-831e-f76859e04e1a",
+ "Service_Plan_Name": "SHAREPOINTSTANDARD",
+ "Service_Plan_Id": "c7699d2e-19aa-44de-8edf-1736da088ca1",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINTSTANDARD"
+ },
+ {
+ "Product_Display_Name": "SharePoint Online (Plan 2)",
+ "String_Id": "SHAREPOINTENTERPRISE",
+ "GUID": "a9732ec9-17d9-494c-a51c-d6b45b384dcb",
+ "Service_Plan_Name": "SHAREPOINTENTERPRISE",
+ "Service_Plan_Id": "5dbe027f-2339-4123-9542-606e4d348a72",
+ "Service_Plans_Included_Friendly_Names": "SHAREPOINT ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "SharePoint Syntex",
+ "String_Id": "Intelligent_Content_Services",
+ "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4",
+ "Service_Plan_Name": "CDS_O365_E5_KM",
+ "Service_Plan_Id": "3069d530-e41b-421c-ad59-fb1001a23e11",
+ "Service_Plans_Included_Friendly_Names": "Common Data Service for SharePoint Syntex"
+ },
+ {
+ "Product_Display_Name": "SharePoint Syntex",
+ "String_Id": "Intelligent_Content_Services",
+ "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4",
+ "Service_Plan_Name": "Intelligent_Content_Services",
+ "Service_Plan_Id": "f00bd55e-1633-416e-97c0-03684e42bc42",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Syntex"
+ },
+ {
+ "Product_Display_Name": "SharePoint Syntex",
+ "String_Id": "Intelligent_Content_Services",
+ "GUID": "f61d4aba-134f-44e9-a2a0-f81a5adb26e4",
+ "Service_Plan_Name": "Intelligent_Content_Services_SPO_type",
+ "Service_Plan_Id": "fd2e7f90-1010-487e-a11b-d2b1ae9651fc",
+ "Service_Plans_Included_Friendly_Names": "SharePoint Syntex - SPO type"
+ },
+ {
+ "Product_Display_Name": "Skype for Business Online (Plan 1)",
+ "String_Id": "MCOIMP",
+ "GUID": "b8b749f8-a4ef-4887-9539-c95b1eaa5db7",
+ "Service_Plan_Name": "MCOIMP",
+ "Service_Plan_Id": "afc06cb0-b4f4-4473-8286-d644f70d8faf",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 1)"
+ },
+ {
+ "Product_Display_Name": "Skype for Business Online (Plan 2)",
+ "String_Id": "MCOSTANDARD",
+ "GUID": "d42c793f-6c78-4f43-92ca-e8f6a02b035f",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "SKYPE FOR BUSINESS ONLINE (PLAN 2)"
+ },
+ {
+ "Product_Display_Name": "Skype for Business PSTN Domestic and International Calling",
+ "String_Id": "MCOPSTN2",
+ "GUID": "d3b4fe1f-9992-4930-8acb-ca6ec609365e",
+ "Service_Plan_Name": "MCOPSTN2",
+ "Service_Plan_Id": "5a10155d-f5c1-411a-a8ec-e99aae125390",
+ "Service_Plans_Included_Friendly_Names": "DOMESTIC AND INTERNATIONAL CALLING PLAN"
+ },
+ {
+ "Product_Display_Name": "Skype for Business PSTN Domestic Calling",
+ "String_Id": "MCOPSTN1",
+ "GUID": "0dab259f-bf13-4952-b7f8-7db8f131b28d",
+ "Service_Plan_Name": "MCOPSTN1",
+ "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8",
+ "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN"
+ },
+ {
+ "Product_Display_Name": "Skype for Business PSTN Domestic Calling (120 Minutes)",
+ "String_Id": "MCOPSTN5",
+ "GUID": "54a152dc-90de-4996-93d2-bc47e670fc06",
+ "Service_Plan_Name": "MCOPSTN5",
+ "Service_Plan_Id": "54a152dc-90de-4996-93d2-bc47e670fc06",
+ "Service_Plans_Included_Friendly_Names": "DOMESTIC CALLING PLAN"
+ },
+ {
+ "Product_Display_Name": "Skype for Business PSTN Usage Calling Plan",
+ "String_Id": "MCOPSTNPP",
+ "GUID": "06b48c5f-01d9-4b18-9015-03b52040f51a",
+ "Service_Plan_Name": "MCOPSTN3",
+ "Service_Plan_Id": "6b340437-d6f9-4dc5-8cc2-99163f7f83d6",
+ "Service_Plans_Included_Friendly_Names": "MCOPSTN3"
+ },
+ {
+ "Product_Display_Name": "Teams Phone with Calling Plan",
+ "String_Id": "MCOTEAMS_ESSENTIALS",
+ "GUID": "ae2343d1-0999-43f6-ae18-d816516f6e78",
+ "Service_Plan_Name": "MCOPSTN1",
+ "Service_Plan_Id": "4ed3ff63-69d7-4fb7-b984-5aec7f605ca8",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Domestic Calling Plan"
+ },
+ {
+ "Product_Display_Name": "Teams Phone with Calling Plan",
+ "String_Id": "MCOTEAMS_ESSENTIALS",
+ "GUID": "ae2343d1-0999-43f6-ae18-d816516f6e78",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Teams Rooms Premium",
+ "String_Id": "MTR_PREM",
+ "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
+ "Service_Plan_Name": "MMR_P1",
+ "Service_Plan_Id": "bdaa59a3-74fd-4137-981a-31d4f84eb8a0",
+ "Service_Plans_Included_Friendly_Names": "Meeting Room Managed Services"
+ },
+ {
+ "Product_Display_Name": "Teams Rooms Premium",
+ "String_Id": "MTR_PREM",
+ "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
+ "Service_Plan_Name": "MCOMEETADV",
+ "Service_Plan_Id": "3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Audio Conferencing"
+ },
+ {
+ "Product_Display_Name": "Teams Rooms Premium",
+ "String_Id": "MTR_PREM",
+ "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
+ "Service_Plan_Name": "MCOEV",
+ "Service_Plan_Id": "4828c8ec-dc2e-4779-b502-87ac9ce28ab7",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Phone System"
+ },
+ {
+ "Product_Display_Name": "Teams Rooms Premium",
+ "String_Id": "MTR_PREM",
+ "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
+ "Service_Plan_Name": "INTUNE_A",
+ "Service_Plan_Id": "c1ec4a95-1f05-45b3-a911-aa3fa01094f5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Intune"
+ },
+ {
+ "Product_Display_Name": "Teams Rooms Premium",
+ "String_Id": "MTR_PREM",
+ "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
+ "Service_Plan_Name": "TEAMS1",
+ "Service_Plan_Id": "57ff2da0-773e-42df-b2af-ffb7a2317929",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Teams"
+ },
+ {
+ "Product_Display_Name": "Teams Rooms Premium",
+ "String_Id": "MTR_PREM",
+ "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
+ "Service_Plan_Name": "MCOSTANDARD",
+ "Service_Plan_Id": "0feaeb32-d00e-4d66-bd5a-43b5b83db82c",
+ "Service_Plans_Included_Friendly_Names": "Skype for Business Online (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Teams Rooms Premium",
+ "String_Id": "MTR_PREM",
+ "GUID": "4fb214cb-a430-4a91-9c91-4976763aa78f",
+ "Service_Plan_Name": "WHITEBOARD_PLAN3",
+ "Service_Plan_Id": "4a51bca5-1eff-43f5-878c-177680f191af",
+ "Service_Plans_Included_Friendly_Names": "Whiteboard (Plan 3)"
+ },
+ {
+ "Product_Display_Name": "TELSTRA Calling for O365",
+ "String_Id": "MCOPSTNEAU2",
+ "GUID": "de3312e1-c7b0-46e6-a7c3-a515ff90bc86",
+ "Service_Plan_Name": "MCOPSTNEAU",
+ "Service_Plan_Id": "7861360b-dc3b-4eba-a3fc-0d323a035746",
+ "Service_Plans_Included_Friendly_Names": "AUSTRALIA CALLING PLAN"
+ },
+ {
+ "Product_Display_Name": "Universal Print",
+ "String_Id": "UNIVERSAL_PRINT",
+ "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Universal Print",
+ "String_Id": "UNIVERSAL_PRINT",
+ "GUID": "9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 1",
+ "String_Id": "VISIO_PLAN1_DEPT",
+ "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 1",
+ "String_Id": "VISIO_PLAN1_DEPT",
+ "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76",
+ "Service_Plan_Name": "ONEDRIVE_BASIC",
+ "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1",
+ "Service_Plans_Included_Friendly_Names": "OneDrive for business Basic"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 1",
+ "String_Id": "VISIO_PLAN1_DEPT",
+ "GUID": "ca7f3140-d88c-455b-9a1c-7f0679e31a76",
+ "Service_Plan_Name": "VISIOONLINE",
+ "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f",
+ "Service_Plans_Included_Friendly_Names": "Visio web app"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2",
+ "String_Id": "VISIO_PLAN2_DEPT",
+ "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2",
+ "String_Id": "VISIO_PLAN2_DEPT",
+ "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1",
+ "Service_Plan_Name": "ONEDRIVE_BASIC",
+ "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1",
+ "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2",
+ "String_Id": "VISIO_PLAN2_DEPT",
+ "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1",
+ "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION",
+ "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea",
+ "Service_Plans_Included_Friendly_Names": "Visio Desktop App"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2",
+ "String_Id": "VISIO_PLAN2_DEPT",
+ "GUID": "38b434d2-a15e-4cde-9a98-e737c75623e1",
+ "Service_Plan_Name": "VISIOONLINE",
+ "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f",
+ "Service_Plans_Included_Friendly_Names": "Visio Web App"
+ },
+ {
+ "Product_Display_Name": "Visio Online Plan 1",
+ "String_Id": "VISIOONLINE_PLAN1",
+ "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Visio Online Plan 1",
+ "String_Id": "VISIOONLINE_PLAN1",
+ "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd",
+ "Service_Plan_Name": "ONEDRIVE_BASIC",
+ "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1",
+ "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC"
+ },
+ {
+ "Product_Display_Name": "Visio Online Plan 1",
+ "String_Id": "VISIOONLINE_PLAN1",
+ "GUID": "4b244418-9658-4451-a2b8-b5e2b364e9bd",
+ "Service_Plan_Name": "VISIOONLINE",
+ "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f",
+ "Service_Plans_Included_Friendly_Names": "VISIO WEB APP"
+ },
+ {
+ "Product_Display_Name": "Visio Online Plan 2",
+ "String_Id": "VISIOCLIENT",
+ "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Visio Online Plan 2",
+ "String_Id": "VISIOCLIENT",
+ "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5",
+ "Service_Plan_Name": "ONEDRIVE_BASIC",
+ "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1",
+ "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC"
+ },
+ {
+ "Product_Display_Name": "Visio Online Plan 2",
+ "String_Id": "VISIOCLIENT",
+ "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5",
+ "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION",
+ "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea",
+ "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP"
+ },
+ {
+ "Product_Display_Name": "Visio Online Plan 2",
+ "String_Id": "VISIOCLIENT",
+ "GUID": "c5928f49-12ba-48f7-ada3-0d743a3601d5",
+ "Service_Plan_Name": "VISIOONLINE",
+ "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f",
+ "Service_Plans_Included_Friendly_Names": "VISIO WEB APP"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2 for GCC",
+ "String_Id": "VISIOCLIENT_GOV",
+ "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2 for GCC",
+ "String_Id": "VISIOCLIENT_GOV",
+ "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba",
+ "Service_Plan_Name": "ONEDRIVE_BASIC_GOV",
+ "Service_Plan_Id": "98709c2e-96b5-4244-95f5-a0ebe139fb8a",
+ "Service_Plans_Included_Friendly_Names": "ONEDRIVE FOR BUSINESS BASIC FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2 for GCC",
+ "String_Id": "VISIOCLIENT_GOV",
+ "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba",
+ "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION_GOV",
+ "Service_Plan_Id": "f85945f4-7a55-4009-bc39-6a5f14a8eac1",
+ "Service_Plans_Included_Friendly_Names": "VISIO DESKTOP APP FOR Government"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2 for GCC",
+ "String_Id": "VISIOCLIENT_GOV",
+ "GUID": "4ae99959-6b0f-43b0-b1ce-68146001bdba",
+ "Service_Plan_Name": "VISIOONLINE_GOV",
+ "Service_Plan_Id": "8a9ecb07-cfc0-48ab-866c-f83c4d911576",
+ "Service_Plans_Included_Friendly_Names": "VISIO WEB APP FOR GOVERNMENT"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2 for Faculty",
+ "String_Id": "VISIOCLIENT_FACULTY",
+ "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2 for Faculty",
+ "String_Id": "VISIOCLIENT_FACULTY",
+ "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532",
+ "Service_Plan_Name": "ONEDRIVE_BASIC",
+ "Service_Plan_Id": "da792a53-cbc0-4184-a10d-e544dd34b3c1",
+ "Service_Plans_Included_Friendly_Names": "OneDrive for Business (Basic)"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2 for Faculty",
+ "String_Id": "VISIOCLIENT_FACULTY",
+ "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532",
+ "Service_Plan_Name": "VISIO_CLIENT_SUBSCRIPTION",
+ "Service_Plan_Id": "663a804f-1c30-4ff0-9915-9db84f0d1cea",
+ "Service_Plans_Included_Friendly_Names": "Visio Desktop App"
+ },
+ {
+ "Product_Display_Name": "Visio Plan 2 for Faculty",
+ "String_Id": "VISIOCLIENT_FACULTY",
+ "GUID": "bf95fd32-576a-4742-8d7a-6dc4940b9532",
+ "Service_Plan_Name": "VISIOONLINE",
+ "Service_Plan_Id": "2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f",
+ "Service_Plans_Included_Friendly_Names": "Visio Web App"
+ },
+ {
+ "Product_Display_Name": "Viva Topics",
+ "String_Id": "TOPIC_EXPERIENCES",
+ "GUID": "4016f256-b063-4864-816e-d818aad600c9",
+ "Service_Plan_Name": "GRAPH_CONNECTORS_SEARCH_INDEX_TOPICEXP",
+ "Service_Plan_Id": "b74d57b2-58e9-484a-9731-aeccbba954f0",
+ "Service_Plans_Included_Friendly_Names": "Graph Connectors Search with Index (Viva Topics)"
+ },
+ {
+ "Product_Display_Name": "Viva Topics",
+ "String_Id": "TOPIC_EXPERIENCES",
+ "GUID": "4016f256-b063-4864-816e-d818aad600c9",
+ "Service_Plan_Name": "CORTEX",
+ "Service_Plan_Id": "c815c93d-0759-4bb8-b857-bc921a71be83",
+ "Service_Plans_Included_Friendly_Names": "Viva Topics"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)",
+ "String_Id": "WIN_ENT_E5",
+ "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e",
+ "Service_Plan_Name": "DATAVERSE_FOR_POWERAUTOMATE_DESKTOP",
+ "Service_Plan_Id": "59231cdf-b40d-4534-a93e-14d0cd31d27e",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for PAD"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)",
+ "String_Id": "WIN_ENT_E5",
+ "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)",
+ "String_Id": "WIN_ENT_E5",
+ "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)",
+ "String_Id": "WIN_ENT_E5",
+ "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e",
+ "Service_Plan_Name": "POWERAUTOMATE_DESKTOP_FOR_WIN",
+ "Service_Plan_Id": "2d589a15-b171-4e61-9b5f-31d15eeb2872",
+ "Service_Plans_Included_Friendly_Names": "PAD for Windows"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)",
+ "String_Id": "WIN_ENT_E5",
+ "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)",
+ "String_Id": "WIN_ENT_E5",
+ "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e",
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise (Original)"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5 (Original)",
+ "String_Id": "WIN_ENT_E5",
+ "GUID": "1e7e1070-8ccb-4aca-b470-d7cb538cb07e",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty",
+ "String_Id": "WIN10_ENT_A3_FAC",
+ "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty",
+ "String_Id": "WIN10_ENT_A3_FAC",
+ "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty",
+ "String_Id": "WIN10_ENT_A3_FAC",
+ "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06",
+ "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A3 for faculty",
+ "String_Id": "WIN10_ENT_A3_FAC",
+ "GUID": "8efbe2f6-106e-442f-97d4-a59aa6037e06",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A3 for students",
+ "String_Id": "WIN10_ENT_A3_STU",
+ "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A3 for students",
+ "String_Id": "WIN10_ENT_A3_STU",
+ "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A3 for students",
+ "String_Id": "WIN10_ENT_A3_STU",
+ "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31",
+ "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A3 for students",
+ "String_Id": "WIN10_ENT_A3_STU",
+ "GUID": "d4ef921e-840b-4b48-9a90-ab6698bc7b31",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty",
+ "String_Id": "WIN10_ENT_A5_FAC",
+ "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty",
+ "String_Id": "WIN10_ENT_A5_FAC",
+ "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender for Endpoint"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty",
+ "String_Id": "WIN10_ENT_A5_FAC",
+ "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty",
+ "String_Id": "WIN10_ENT_A5_FAC",
+ "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c",
+ "Service_Plan_Name": "Virtualization Rights for Windows 10",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise A5 for faculty",
+ "String_Id": "WIN10_ENT_A5_FAC",
+ "GUID": "7b1a89a9-5eb9-4cf8-9467-20c943f1122c",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3",
+ "String_Id": "WIN10_PRO_ENT_SUB",
+ "GUID": "cb10e6cd-9da4-4992-867b-67546b1db821",
+ "Service_Plan_Name": "WIN10_PRO_ENT_SUB",
+ "Service_Plan_Id": "21b439ba-a0ca-424f-a6cc-52f954a5b111",
+ "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3",
+ "String_Id": "WIN10_VDA_E3",
+ "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3",
+ "String_Id": "WIN10_VDA_E3",
+ "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "UNIVERSAL PRINT"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3",
+ "String_Id": "WIN10_VDA_E3",
+ "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a",
+ "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "WINDOWS 10 ENTERPRISE (NEW)"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3",
+ "String_Id": "WIN10_VDA_E3",
+ "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "WINDOWS UPDATE FOR BUSINESS DEPLOYMENT SERVICE"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3",
+ "String_Id": "WIN10_VDA_E3",
+ "GUID": "6a0f6da5-0b87-4190-a6ae-9bb5a2b9546a",
+ "Service_Plan_Name": "Windows_Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5",
+ "String_Id": "WIN10_VDA_E5",
+ "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5",
+ "String_Id": "WIN10_VDA_E5",
+ "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5",
+ "String_Id": "WIN10_VDA_E5",
+ "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5",
+ "String_Id": "WIN10_VDA_E5",
+ "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002",
+ "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5",
+ "String_Id": "WIN10_VDA_E5",
+ "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5",
+ "String_Id": "WIN10_VDA_E5",
+ "GUID": "488ba24a-39a9-4473-8ee5-19291e71b002",
+ "Service_Plan_Name": "Windows_Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)",
+ "String_Id": "WINE5_GCC_COMPAT",
+ "GUID": "938fd547-d794-42a4-996c-1cc206619580",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION_GOV",
+ "Service_Plan_Id": "922ba911-5694-4e99-a794-73aed9bfeec8",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation for Government"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)",
+ "String_Id": "WINE5_GCC_COMPAT",
+ "GUID": "938fd547-d794-42a4-996c-1cc206619580",
+ "Service_Plan_Name": "WINDEFATP",
+ "Service_Plan_Id": "871d91ec-ec1a-452b-a83f-bd76c7d770ef",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Defender For Endpoint"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E5 Commercial (GCC Compatible)",
+ "String_Id": "WINE5_GCC_COMPAT",
+ "GUID": "938fd547-d794-42a4-996c-1cc206619580",
+ "Service_Plan_Name": "Virtualization \tRights \tfor \tWindows \t10 \t(E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10 Enterprise (New)"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA",
+ "String_Id": "E3_VDA_only",
+ "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA",
+ "String_Id": "E3_VDA_only",
+ "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550",
+ "Service_Plan_Name": "UNIVERSAL_PRINT_01",
+ "Service_Plan_Id": "795f6fe0-cc4d-4773-b050-5dde4dc704c9",
+ "Service_Plans_Included_Friendly_Names": "Universal Print"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA",
+ "String_Id": "E3_VDA_only",
+ "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550",
+ "Service_Plan_Name": "Virtualization Rights for Windows 10 (E3/E5+VDA)",
+ "Service_Plan_Id": "e7c91390-7625-45be-94e0-e16907e03118",
+ "Service_Plans_Included_Friendly_Names": "Windows 10/11 Enterprise"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA",
+ "String_Id": "E3_VDA_only",
+ "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550",
+ "Service_Plan_Name": "Windows_Autopatch",
+ "Service_Plan_Id": "9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3",
+ "Service_Plans_Included_Friendly_Names": "Windows Autopatch"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA",
+ "String_Id": "E3_VDA_only",
+ "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550",
+ "Service_Plan_Name": "WINDOWSUPDATEFORBUSINESS_DEPLOYMENTSERVICE",
+ "Service_Plan_Id": "7bf960f6-2cd9-443a-8046-5dbff9558365",
+ "Service_Plans_Included_Friendly_Names": "Windows Update for Business Deployment Service"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA",
+ "String_Id": "E3_VDA_only",
+ "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550",
+ "Service_Plan_Name": "DATAVERSE_FOR_POWERAUTOMATE_DESKTOP",
+ "Service_Plan_Id": "59231cdf-b40d-4534-a93e-14d0cd31d27e",
+ "Service_Plans_Included_Friendly_Names": "Dataverse for PAD"
+ },
+ {
+ "Product_Display_Name": "Windows 10/11 Enterprise E3 VDA",
+ "String_Id": "E3_VDA_only",
+ "GUID": "d13ef257-988a-46f3-8fce-f47484dd4550",
+ "Service_Plan_Name": "POWERAUTOMATE_DESKTOP_FOR_WIN",
+ "Service_Plan_Id": "2d589a15-b171-4e61-9b5f-31d15eeb2872",
+ "Service_Plans_Included_Friendly_Names": "PAD for Windows"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB",
+ "String_Id": "CPC_B_1C_2RAM_64GB",
+ "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB",
+ "String_Id": "CPC_B_1C_2RAM_64GB",
+ "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB",
+ "String_Id": "CPC_B_1C_2RAM_64GB",
+ "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 1 vCPU 2 GB 64 GB",
+ "String_Id": "CPC_B_1C_2RAM_64GB",
+ "GUID": "816eacd3-e1e3-46b3-83c8-1ffd37e053d9",
+ "Service_Plan_Name": "CPC_B_1C_2RAM_64GB",
+ "Service_Plan_Id": "3b98b912-1720-4a1e-9630-c9a41dbb61d8",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 1 vCPU 2 GB 64 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB",
+ "String_Id": "CPC_B_2C_4RAM_128GB",
+ "GUID": "135bee78-485b-4181-ad6e-40286e311850",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB",
+ "String_Id": "CPC_B_2C_4RAM_128GB",
+ "GUID": "135bee78-485b-4181-ad6e-40286e311850",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB",
+ "String_Id": "CPC_B_2C_4RAM_128GB",
+ "GUID": "135bee78-485b-4181-ad6e-40286e311850",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 128 GB",
+ "String_Id": "CPC_B_2C_4RAM_128GB",
+ "GUID": "135bee78-485b-4181-ad6e-40286e311850",
+ "Service_Plan_Name": "CPC_B_2C_4RAM_128GB",
+ "Service_Plan_Id": "1a13832e-cd79-497d-be76-24186f55c8b0",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB",
+ "String_Id": "CPC_B_2C_4RAM_256GB",
+ "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB",
+ "String_Id": "CPC_B_2C_4RAM_256GB",
+ "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB",
+ "String_Id": "CPC_B_2C_4RAM_256GB",
+ "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 256 GB",
+ "String_Id": "CPC_B_2C_4RAM_256GB",
+ "GUID": "805d57c3-a97d-4c12-a1d0-858ffe5015d0",
+ "Service_Plan_Name": "CPC_B_2C_4RAM_256GB",
+ "Service_Plan_Id": "a0b1c075-51c9-4a42-b34c-308f3993bb7e",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB",
+ "String_Id": "CPC_B_2C_4RAM_64GB",
+ "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB",
+ "String_Id": "CPC_B_2C_4RAM_64GB",
+ "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB",
+ "String_Id": "CPC_B_2C_4RAM_64GB",
+ "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 4 GB 64 GB",
+ "String_Id": "CPC_B_2C_4RAM_64GB",
+ "GUID": "42e6818f-8966-444b-b7ac-0027c83fa8b5",
+ "Service_Plan_Name": "CPC_B_2C_4RAM_64GB",
+ "Service_Plan_Id": "a790cd6e-a153-4461-83c7-e127037830b6",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 4 GB 64 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB",
+ "String_Id": "CPC_B_2C_8RAM_128GB",
+ "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB",
+ "String_Id": "CPC_B_2C_8RAM_128GB",
+ "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB",
+ "String_Id": "CPC_B_2C_8RAM_128GB",
+ "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 128 GB",
+ "String_Id": "CPC_B_2C_8RAM_128GB",
+ "GUID": "71f21848-f89b-4aaa-a2dc-780c8e8aac5b",
+ "Service_Plan_Name": "CPC_SS_2",
+ "Service_Plan_Id": "9d2eed2c-b0c0-4a89-940c-bc303444a41b",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU, 8 GB, 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB",
+ "String_Id": "CPC_B_2C_8RAM_256GB",
+ "GUID": "750d9542-a2f8-41c7-8c81-311352173432",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB",
+ "String_Id": "CPC_B_2C_8RAM_256GB",
+ "GUID": "750d9542-a2f8-41c7-8c81-311352173432",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB",
+ "String_Id": "CPC_B_2C_8RAM_256GB",
+ "GUID": "750d9542-a2f8-41c7-8c81-311352173432",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 2 vCPU 8 GB 256 GB",
+ "String_Id": "CPC_B_2C_8RAM_256GB",
+ "GUID": "750d9542-a2f8-41c7-8c81-311352173432",
+ "Service_Plan_Name": "CPC_B_2C_8RAM_256GB",
+ "Service_Plan_Id": "1a3ef005-2ef6-434b-8be1-faa56c892854",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 2 vCPU 8 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB",
+ "String_Id": "CPC_B_4C_16RAM_128GB",
+ "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB",
+ "String_Id": "CPC_B_4C_16RAM_128GB",
+ "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB",
+ "String_Id": "CPC_B_4C_16RAM_128GB",
+ "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB",
+ "String_Id": "CPC_B_4C_16RAM_128GB",
+ "GUID": "ad83ac17-4a5a-4ebb-adb2-079fb277e8b9",
+ "Service_Plan_Name": "CPC_B_4C_16RAM_128GB",
+ "Service_Plan_Id": "1d4f75d3-a19b-49aa-88cb-f1ea1690b550",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)",
+ "String_Id": "CPC_B_4C_16RAM_128GB_WHB",
+ "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 128 GB (with Windows Hybrid Benefit)",
+ "String_Id": "CPC_B_4C_16RAM_128GB_WHB",
+ "GUID": "439ac253-bfbc-49c7-acc0-6b951407b5ef",
+ "Service_Plan_Name": "CPC_B_4C_16RAM_128GB",
+ "Service_Plan_Id": "1d4f75d3-a19b-49aa-88cb-f1ea1690b550",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB",
+ "String_Id": "CPC_B_4C_16RAM_256GB",
+ "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB",
+ "String_Id": "CPC_B_4C_16RAM_256GB",
+ "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB",
+ "String_Id": "CPC_B_4C_16RAM_256GB",
+ "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 256 GB",
+ "String_Id": "CPC_B_4C_16RAM_256GB",
+ "GUID": "b3891a9f-c7d9-463c-a2ec-0b2321bda6f9",
+ "Service_Plan_Name": "CPC_B_4C_16RAM_256GB",
+ "Service_Plan_Id": "30f6e561-8805-41d0-80ce-f82698b72d7d",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB",
+ "String_Id": "CPC_B_4C_16RAM_512GB",
+ "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB",
+ "String_Id": "CPC_B_4C_16RAM_512GB",
+ "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB",
+ "String_Id": "CPC_B_4C_16RAM_512GB",
+ "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 4 vCPU 16 GB 512 GB",
+ "String_Id": "CPC_B_4C_16RAM_512GB",
+ "GUID": "1b3043ad-dfc6-427e-a2c0-5ca7a6c94a2b",
+ "Service_Plan_Name": "CPC_B_4C_16RAM_512GB",
+ "Service_Plan_Id": "15499661-b229-4a1f-b0f9-bd5832ef7b3e",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 4 vCPU 16 GB 512 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB",
+ "String_Id": "CPC_B_8C_32RAM_128GB",
+ "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB",
+ "String_Id": "CPC_B_8C_32RAM_128GB",
+ "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB",
+ "String_Id": "CPC_B_8C_32RAM_128GB",
+ "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 128 GB",
+ "String_Id": "CPC_B_8C_32RAM_128GB",
+ "GUID": "3cb45fab-ae53-4ff6-af40-24c1915ca07b",
+ "Service_Plan_Name": "CPC_B_8C_32RAM_128GB",
+ "Service_Plan_Id": "648005fc-b330-4bd9-8af6-771f28958ac0",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB",
+ "String_Id": "CPC_B_8C_32RAM_256GB",
+ "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB",
+ "String_Id": "CPC_B_8C_32RAM_256GB",
+ "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB",
+ "String_Id": "CPC_B_8C_32RAM_256GB",
+ "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 256 GB",
+ "String_Id": "CPC_B_8C_32RAM_256GB",
+ "GUID": "fbc79df2-da01-4c17-8d88-17f8c9493d8f",
+ "Service_Plan_Name": "CPC_B_8C_32RAM_256GB",
+ "Service_Plan_Id": "d7a5113a-0276-4dc2-94f8-ca9f2c5ae078",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB",
+ "String_Id": "CPC_B_8C_32RAM_512GB",
+ "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB",
+ "String_Id": "CPC_B_8C_32RAM_512GB",
+ "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_CUSTOMER_PLAN1",
+ "Service_Plan_Id": "6f23d6a9-adbf-481c-8538-b4c095654487",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 1)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB",
+ "String_Id": "CPC_B_8C_32RAM_512GB",
+ "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049",
+ "Service_Plan_Name": "M365_LIGHTHOUSE_PARTNER_PLAN1",
+ "Service_Plan_Id": "d55411c9-cfff-40a9-87c7-240f14df7da5",
+ "Service_Plans_Included_Friendly_Names": "Microsoft 365 Lighthouse (Plan 2)"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Business 8 vCPU 32 GB 512 GB",
+ "String_Id": "CPC_B_8C_32RAM_512GB",
+ "GUID": "8ee402cd-e6a8-4b67-a411-54d1f37a2049",
+ "Service_Plan_Name": "CPC_B_8C_32RAM_512GB",
+ "Service_Plan_Id": "4229a0b4-7f34-4835-b068-6dc8d10be57c",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Business 8 vCPU 32 GB 512 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB",
+ "String_Id": "CPC_E_1C_2GB_64GB",
+ "GUID": "0c278af4-c9c1-45de-9f4b-cd929e747a2c",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB",
+ "String_Id": "CPC_E_1C_2GB_64GB",
+ "GUID": "0c278af4-c9c1-45de-9f4b-cd929e747a2c",
+ "Service_Plan_Name": "CPC_E_1C_2GB_64GB",
+ "Service_Plan_Id": "86d70dbb-d4c6-4662-ba17-3014204cbb28",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 1 vCPU 2 GB 64 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB",
+ "String_Id": "CPC_E_2C_4GB_64GB",
+ "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB",
+ "String_Id": "CPC_E_2C_4GB_64GB",
+ "GUID": "7bb14422-3b90-4389-a7be-f1b745fc037f",
+ "Service_Plan_Name": "CPC_E_2C_4GB_64GB",
+ "Service_Plan_Id": "23a25099-1b2f-4e07-84bd-b84606109438",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 64 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB",
+ "String_Id": "CPC_E_2C_4GB_128GB",
+ "GUID": "226ca751-f0a4-4232-9be5-73c02a92555e",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB",
+ "String_Id": "CPC_E_2C_4GB_128GB",
+ "GUID": "226ca751-f0a4-4232-9be5-73c02a92555e",
+ "Service_Plan_Name": "CPC_1",
+ "Service_Plan_Id": "545e3611-3af8-49a5-9a0a-b7867968f4b0",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB (Preview)",
+ "String_Id": "CPC_LVL_1",
+ "GUID": "bce09f38-1800-4a51-8d50-5486380ba84a",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB (Preview)",
+ "String_Id": "CPC_LVL_1",
+ "GUID": "bce09f38-1800-4a51-8d50-5486380ba84a",
+ "Service_Plan_Name": "CPC_1",
+ "Service_Plan_Id": "545e3611-3af8-49a5-9a0a-b7867968f4b0",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB",
+ "String_Id": "CPC_E_2C_4GB_256GB",
+ "GUID": "5265a84e-8def-4fa2-ab4b-5dc278df5025",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB",
+ "String_Id": "CPC_E_2C_4GB_256GB",
+ "GUID": "5265a84e-8def-4fa2-ab4b-5dc278df5025",
+ "Service_Plan_Name": "CPC_E_2C_4GB_256GB",
+ "Service_Plan_Id": "0d143570-9b92-4f57-adb5-e4efcd23b3bb",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 4 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB",
+ "String_Id": "CPC_E_2C_8GB_128GB",
+ "GUID": "e2aebe6c-897d-480f-9d62-fff1381581f7",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB",
+ "String_Id": "CPC_E_2C_8GB_128GB",
+ "GUID": "e2aebe6c-897d-480f-9d62-fff1381581f7",
+ "Service_Plan_Name": "CPC_2",
+ "Service_Plan_Id": "3efff3fe-528a-4fc5-b1ba-845802cc764f",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB (Preview)",
+ "String_Id": "CPC_LVL_2",
+ "GUID": "461cb62c-6db7-41aa-bf3c-ce78236cdb9e",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB (Preview)",
+ "String_Id": "CPC_LVL_2",
+ "GUID": "461cb62c-6db7-41aa-bf3c-ce78236cdb9e",
+ "Service_Plan_Name": "CPC_2",
+ "Service_Plan_Id": "3efff3fe-528a-4fc5-b1ba-845802cc764f",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB",
+ "String_Id": "CPC_E_2C_8GB_256GB",
+ "GUID": "1c79494f-e170-431f-a409-428f6053fa35",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB",
+ "String_Id": "CPC_E_2C_8GB_256GB",
+ "GUID": "1c79494f-e170-431f-a409-428f6053fa35",
+ "Service_Plan_Name": "CPC_E_2C_8GB_256GB",
+ "Service_Plan_Id": "d3468c8c-3545-4f44-a32f-b465934d2498",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 2 vCPU 8 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB",
+ "String_Id": "CPC_E_4C_16GB_128GB",
+ "GUID": "d201f153-d3b2-4057-be2f-fe25c8983e6f",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB",
+ "String_Id": "CPC_E_4C_16GB_128GB",
+ "GUID": "d201f153-d3b2-4057-be2f-fe25c8983e6f",
+ "Service_Plan_Name": "CPC_E_4C_16GB_128GB",
+ "Service_Plan_Id": "2de9c682-ca3f-4f2b-b360-dfc4775db133",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB",
+ "String_Id": "CPC_E_4C_16GB_256GB",
+ "GUID": "96d2951e-cb42-4481-9d6d-cad3baac177e",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB",
+ "String_Id": "CPC_E_4C_16GB_256GB",
+ "GUID": "96d2951e-cb42-4481-9d6d-cad3baac177e",
+ "Service_Plan_Name": "CPC_E_4C_16GB_256GB",
+ "Service_Plan_Id": "9ecf691d-8b82-46cb-b254-cd061b2c02fb",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB (Preview)",
+ "String_Id": "CPC_LVL_3",
+ "GUID": "bbb4bf6e-3e12-4343-84a1-54d160c00f40",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB (Preview)",
+ "String_Id": "CPC_LVL_3",
+ "GUID": "bbb4bf6e-3e12-4343-84a1-54d160c00f40",
+ "Service_Plan_Name": "CPC_E_4C_16GB_256GB",
+ "Service_Plan_Id": "9ecf691d-8b82-46cb-b254-cd061b2c02fb",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB",
+ "String_Id": "CPC_E_4C_16GB_512GB",
+ "GUID": "0da63026-e422-4390-89e8-b14520d7e699",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB",
+ "String_Id": "CPC_E_4C_16GB_512GB",
+ "GUID": "0da63026-e422-4390-89e8-b14520d7e699",
+ "Service_Plan_Name": "CPC_E_4C_16GB_512GB",
+ "Service_Plan_Id": "3bba9856-7cf2-4396-904a-00de74fba3a4",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 4 vCPU 16 GB 512 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB",
+ "String_Id": "CPC_E_8C_32GB_128GB",
+ "GUID": "c97d00e4-0c4c-4ec2-a016-9448c65de986",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB",
+ "String_Id": "CPC_E_8C_32GB_128GB",
+ "GUID": "c97d00e4-0c4c-4ec2-a016-9448c65de986",
+ "Service_Plan_Name": "CPC_E_8C_32GB_128GB",
+ "Service_Plan_Id": "2f3cdb12-bcde-4e37-8529-e9e09ec09e23",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB",
+ "String_Id": "CPC_E_8C_32GB_256GB",
+ "GUID": "7818ca3e-73c8-4e49-bc34-1276a2d27918",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB",
+ "String_Id": "CPC_E_8C_32GB_256GB",
+ "GUID": "7818ca3e-73c8-4e49-bc34-1276a2d27918",
+ "Service_Plan_Name": "CPC_E_8C_32GB_256GB",
+ "Service_Plan_Id": "69dc175c-dcff-4757-8389-d19e76acb45d",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB",
+ "String_Id": "CPC_E_8C_32GB_512GB",
+ "GUID": "9fb0ba5f-4825-4e84-b239-5167a3a5d4dc",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "Exchange Foundation"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB",
+ "String_Id": "CPC_E_8C_32GB_512GB",
+ "GUID": "9fb0ba5f-4825-4e84-b239-5167a3a5d4dc",
+ "Service_Plan_Name": "CPC_E_8C_32GB_512GB",
+ "Service_Plan_Id": "0e837228-8250-4047-8a80-d4a34ba11658",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Enterprise 8 vCPU 32 GB 512 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 64 GB",
+ "String_Id": "Windows_365_S_2vCPU_4GB_64GB",
+ "GUID": "1f9990ca-45d9-4c8d-8d04-a79241924ce1",
+ "Service_Plan_Name": "CPC_S_2C_4GB_64GB",
+ "Service_Plan_Id": "64981bdb-a5a6-4a22-869f-a9455366d5bc",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 64 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 128 GB",
+ "String_Id": "Windows_365_S_2vCPU_4GB_128GB",
+ "GUID": "90369797-7141-4e75-8f5e-d13f4b6092c1",
+ "Service_Plan_Name": "CPC_S_2C_4GB_128GB",
+ "Service_Plan_Id": "51855c77-4d2e-4736-be67-6dca605f2b57",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 4 GB 256 GB",
+ "String_Id": "Windows_365_S_2vCPU_4GB_256GB",
+ "GUID": "8fe96593-34d3-49bb-aeee-fb794fed0800",
+ "Service_Plan_Name": "CPC_S_2C_4GB_256GB",
+ "Service_Plan_Id": "aa8fbe7b-695c-4c05-8d45-d1dddf6f7616",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 4 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 8 GB 128 GB",
+ "String_Id": "Windows_365_S_2vCPU_8GB_128GB",
+ "GUID": "2d21fc84-b918-491e-ad84-e24d61ccec94",
+ "Service_Plan_Name": "CPC_S_2C_8GB_128GB",
+ "Service_Plan_Id": "057efbfe-a95d-4263-acb0-12b4a31fed8d",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 8 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Shared Use 2 vCPU 8 GB 256 GB",
+ "String_Id": "Windows_365_S_2vCPU_8GB_256GB",
+ "GUID": "2eaa4058-403e-4434-9da9-ea693f5d96dc",
+ "Service_Plan_Name": "CPC_S_2C_8GB_256GB",
+ "Service_Plan_Id": "50ef7026-6174-40ba-bff7-f0e4fcddbf65",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 2 vCPU 8 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 128 GB",
+ "String_Id": "Windows_365_S_4vCPU_16GB_128GB",
+ "GUID": "1bf40e76-4065-4530-ac37-f1513f362f50",
+ "Service_Plan_Name": "CPC_S_4C_16GB_128GB",
+ "Service_Plan_Id": "dd3801e2-4aa1-4b16-a44b-243e55497584",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 256 GB",
+ "String_Id": "Windows_365_S_4vCPU_16GB_256GB",
+ "GUID": "a9d1e0df-df6f-48df-9386-76a832119cca",
+ "Service_Plan_Name": "CPC_S_4C_16GB_256GB",
+ "Service_Plan_Id": "2d1d344e-d10c-41bb-953b-b3a47521dca0",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Shared Use 4 vCPU 16 GB 512 GB",
+ "String_Id": "Windows_365_S_4vCPU_16GB_512GB",
+ "GUID": "469af4da-121c-4529-8c85-9467bbebaa4b",
+ "Service_Plan_Name": "CPC_S_4C_16GB_512GB",
+ "Service_Plan_Id": "48b82071-99a5-4214-b493-406a637bd68d",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 4 vCPU 16 GB 512 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 128 GB",
+ "String_Id": "Windows_365_S_8vCPU_32GB_128GB",
+ "GUID": "f319c63a-61a9-42b7-b786-5695bc7edbaf",
+ "Service_Plan_Name": "CPC_S_8C_32GB_128GB",
+ "Service_Plan_Id": "e4dee41f-a5c5-457d-b7d3-c309986fdbb2",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 128 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 256 GB",
+ "String_Id": "Windows_365_S_8vCPU_32GB_256GB",
+ "GUID": "fb019e88-26a0-4218-bd61-7767d109ac26",
+ "Service_Plan_Name": "CPC_S_8C_32GB_256GB",
+ "Service_Plan_Id": "1e2321a0-f81c-4d43-a0d5-9895125706b8",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 256 GB"
+ },
+ {
+ "Product_Display_Name": "Windows 365 Shared Use 8 vCPU 32 GB 512 GB",
+ "String_Id": "Windows_365_S_8vCPU_32GB_512GB",
+ "GUID": "f4dc1de8-8c94-4d37-af8a-1fca6675590a",
+ "Service_Plan_Name": "CPC_S_8C_32GB_512GB",
+ "Service_Plan_Id": "fa0b4021-0f60-4d95-bf68-95036285282a",
+ "Service_Plans_Included_Friendly_Names": "Windows 365 Shared Use 8 vCPU 32 GB 512 GB"
+ },
+ {
+ "Product_Display_Name": "Windows Store for Business",
+ "String_Id": "WINDOWS_STORE",
+ "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9",
+ "Service_Plan_Name": "EXCHANGE_S_FOUNDATION",
+ "Service_Plan_Id": "113feb6c-3fe4-4440-bddc-54d774bf0318",
+ "Service_Plans_Included_Friendly_Names": "EXCHANGE FOUNDATION"
+ },
+ {
+ "Product_Display_Name": "Windows Store for Business",
+ "String_Id": "WINDOWS_STORE",
+ "GUID": "6470687e-a428-4b7a-bef2-8a291ad947c9",
+ "Service_Plan_Name": "WINDOWS_STORE",
+ "Service_Plan_Id": "a420f25f-a7b3-4ff5-a9d0-5d58f73b537d",
+ "Service_Plans_Included_Friendly_Names": "WINDOWS STORE SERVICE"
+ },
+ {
+ "Product_Display_Name": "Windows Store for Business EDU Faculty",
+ "String_Id": "WSFB_EDU_FACULTY",
+ "GUID": "c7e9d9e6-1981-4bf3-bb50-a5bdfaa06fb2",
+ "Service_Plan_Name": "Windows Store for Business EDU Store_faculty",
+ "Service_Plan_Id": "aaa2cd24-5519-450f-a1a0-160750710ca1",
+ "Service_Plans_Included_Friendly_Names": "Windows Store for Business EDU Store_faculty"
+ },
+ {
+ "Product_Display_Name": "Microsoft Workplace Analytics",
+ "String_Id": "WORKPLACE_ANALYTICS",
+ "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8",
+ "Service_Plan_Name": "WORKPLACE_ANALYTICS",
+ "Service_Plan_Id": "f477b0f0-3bb1-4890-940c-40fcee6ce05f",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics"
+ },
+ {
+ "Product_Display_Name": "Microsoft Workplace Analytics",
+ "String_Id": "WORKPLACE_ANALYTICS",
+ "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8",
+ "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_BACKEND",
+ "Service_Plan_Id": "ff7b261f-d98b-415b-827c-42a3fdf015af",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights Backend"
+ },
+ {
+ "Product_Display_Name": "Microsoft Workplace Analytics",
+ "String_Id": "WORKPLACE_ANALYTICS",
+ "GUID": "3d957427-ecdc-4df2-aacd-01cc9d519da8",
+ "Service_Plan_Name": "WORKPLACE_ANALYTICS_INSIGHTS_USER",
+ "Service_Plan_Id": "b622badb-1b45-48d5-920f-4b27a2c0996c",
+ "Service_Plans_Included_Friendly_Names": "Microsoft Workplace Analytics Insights User"
+ }
+]
From 0e58106ce72f741aafe1f05f25b407e74c683ac0 Mon Sep 17 00:00:00 2001
From: John Duprey
Date: Wed, 9 Aug 2023 17:05:01 -0400
Subject: [PATCH 30/56] M365 Portal Change
Replace portal.office.com with admin.microsoft.com
---
src/data/portals.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/data/portals.json b/src/data/portals.json
index 0e49317032f2..38851cfcff98 100644
--- a/src/data/portals.json
+++ b/src/data/portals.json
@@ -2,7 +2,7 @@
{
"label": "M365 Portal",
"name": "M365_Portal",
- "url": "https://portal.office.com/Partner/BeginClientSession.aspx?CTID=customerId&CSDEST=o365admincenter",
+ "url": "https://admin.microsoft.com/Partner/BeginClientSession.aspx?CTID=customerId&CSDEST=o365admincenter",
"variable": "customerId",
"target": "_blank",
"external": true
From 6aba60fbb1ba291f1bd8b784b65229eddab84586 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Thu, 10 Aug 2023 10:52:42 +0200
Subject: [PATCH 31/56] added ipv6 support
---
src/views/tenant/administration/GeoIPLookup.js | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/src/views/tenant/administration/GeoIPLookup.js b/src/views/tenant/administration/GeoIPLookup.js
index 5f346a30861e..dd1b21e215a4 100644
--- a/src/views/tenant/administration/GeoIPLookup.js
+++ b/src/views/tenant/administration/GeoIPLookup.js
@@ -24,12 +24,6 @@ import { CippContentCard } from 'src/components/layout'
import Skeleton from 'react-loading-skeleton'
import { domainsApi } from 'src/store/api/domains'
-const isValidTenantInput = (value) => {
- // Check if the input is a valid IPAddress
- const ipRegex = new RegExp('^([0-9]{1,3}\\.){3}[0-9]{1,3}$')
- return !ipRegex.test(value)
-}
-
const GeoIPLookup = () => {
let navigate = useNavigate()
const tenant = useSelector((state) => state.app.currentTenant)
@@ -80,7 +74,7 @@ const GeoIPLookup = () => {
render={({ handleSubmit, submitting, pristine }) => {
return (
-
+
{({ input, meta }) => {
return (
<>
From 0262511a62cc11b372628dd9bbe1244e80bbf596 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Thu, 10 Aug 2023 15:00:27 +0200
Subject: [PATCH 32/56] Removed duplicate entry
---
src/views/tenant/administration/AlertWizard.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/tenant/administration/AlertWizard.js b/src/views/tenant/administration/AlertWizard.js
index 8693e7ce40e2..e0874ff2ed4f 100644
--- a/src/views/tenant/administration/AlertWizard.js
+++ b/src/views/tenant/administration/AlertWizard.js
@@ -206,7 +206,7 @@ const AlertWizard = () => {
},
{
value: 'UserLoggedIn',
- name: 'A user has logged in from non-allowed location',
+ name: 'A user has logged in from any location',
},
]}
/>
From 73fe47741f3db8f355bb3c2b683e0cc8e9b371c0 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Thu, 10 Aug 2023 23:31:46 +0200
Subject: [PATCH 33/56] improvements to alerts
---
src/views/cipp/CIPPSettings.js | 3 +-
.../tenant/administration/AlertWizard.js | 96 ++++++++++---------
2 files changed, 54 insertions(+), 45 deletions(-)
diff --git a/src/views/cipp/CIPPSettings.js b/src/views/cipp/CIPPSettings.js
index c7b45722b35f..f83a48bce9c2 100644
--- a/src/views/cipp/CIPPSettings.js
+++ b/src/views/cipp/CIPPSettings.js
@@ -1143,7 +1143,8 @@ const NotificationsSettings = () => {
{ value: 'Alert', name: 'Alert' },
{ value: 'Error', name: 'Error' },
{ value: 'Info', name: 'Info' },
- { value: 'Warn', name: 'Warn' },
+ { value: 'Warning', name: 'Warning' },
+ { value: 'Critical', name: 'Critical' },
]}
/>
diff --git a/src/views/tenant/administration/AlertWizard.js b/src/views/tenant/administration/AlertWizard.js
index e0874ff2ed4f..40a310af660d 100644
--- a/src/views/tenant/administration/AlertWizard.js
+++ b/src/views/tenant/administration/AlertWizard.js
@@ -6,7 +6,7 @@ import { faCheck, faExclamationTriangle, faTimes } from '@fortawesome/free-solid
import { CippWizard } from 'src/components/layout'
import { WizardTableField } from 'src/components/tables'
import PropTypes from 'prop-types'
-import { RFFCFormSelect, RFFCFormSwitch, RFFSelectSearch } from 'src/components/forms'
+import { Condition, RFFCFormSelect, RFFCFormSwitch, RFFSelectSearch } from 'src/components/forms'
import { useLazyGenericPostRequestQuery } from 'src/store/api/app'
import countryList from 'src/data/countryList.json'
const Error = ({ name }) => (
@@ -98,53 +98,61 @@ const AlertWizard = () => {
These alerts will be sent to the user or webhook configured in the CIPP notification
settings menu.
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
Date: Thu, 10 Aug 2023 23:47:43 +0200
Subject: [PATCH 34/56] prevent crashes if result is empty
---
src/components/tables/CippTable.js | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/src/components/tables/CippTable.js b/src/components/tables/CippTable.js
index ee16566de436..4490e100ff14 100644
--- a/src/components/tables/CippTable.js
+++ b/src/components/tables/CippTable.js
@@ -499,7 +499,17 @@ export default function CippTable({
{(massResults.length >= 1 || loopRunning) && (
{massResults.map((message, idx) => {
- return {message.data.Results}
+ return (
+
+ {
+ // check if message.data.Results is an array, if it is, join it.
+
+ Array.isArray(message.data.Results)
+ ? message.data?.Results
+ : message.data?.Results
+ }
+
+ )
})}
{loopRunning && (
From 58370c0cea00bce31a9f0cdcb4d275a6b581240b Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Thu, 10 Aug 2023 23:50:27 +0200
Subject: [PATCH 35/56] fixes issuers with returned results
---
src/components/tables/CippTable.js | 12 +-----------
src/views/cipp/CIPPSettings.js | 2 +-
2 files changed, 2 insertions(+), 12 deletions(-)
diff --git a/src/components/tables/CippTable.js b/src/components/tables/CippTable.js
index 4490e100ff14..98eb52adaf53 100644
--- a/src/components/tables/CippTable.js
+++ b/src/components/tables/CippTable.js
@@ -499,17 +499,7 @@ export default function CippTable({
{(massResults.length >= 1 || loopRunning) && (
{massResults.map((message, idx) => {
- return (
-
- {
- // check if message.data.Results is an array, if it is, join it.
-
- Array.isArray(message.data.Results)
- ? message.data?.Results
- : message.data?.Results
- }
-
- )
+ return {message.data?.Results}
})}
{loopRunning && (
diff --git a/src/views/cipp/CIPPSettings.js b/src/views/cipp/CIPPSettings.js
index f83a48bce9c2..7109c76c6cc7 100644
--- a/src/views/cipp/CIPPSettings.js
+++ b/src/views/cipp/CIPPSettings.js
@@ -763,7 +763,7 @@ const ExcludedTenantsSettings = () => {
)}
{refreshPermissionsResults.isSuccess && (
- {refreshPermissionsResults.data.map((result, idx) => (
+ {refreshPermissionsResults.data?.Results.map((result, idx) => (
{result}
))}
From 9a86d678a1abcbc39350e9edc3e7f7d25aa8596e Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Fri, 11 Aug 2023 00:08:38 +0200
Subject: [PATCH 36/56] fix for results arr, not pretty but it'll do pig.
---
src/components/tables/CippTable.js | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/src/components/tables/CippTable.js b/src/components/tables/CippTable.js
index 98eb52adaf53..d29533dd4ced 100644
--- a/src/components/tables/CippTable.js
+++ b/src/components/tables/CippTable.js
@@ -499,7 +499,16 @@ export default function CippTable({
{(massResults.length >= 1 || loopRunning) && (
{massResults.map((message, idx) => {
- return {message.data?.Results}
+ return (
+
+ {
+ //if message.data.results is an array, join, else just show the message
+ message.data?.Results?.length > 1
+ ? message.data?.Results?.join(', ')
+ : message.data?.Results
+ }
+
+ )
})}
{loopRunning && (
From 9c210c78a0c6e5646a337815cb8e1010ab4538c4 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Sat, 12 Aug 2023 01:09:04 +0200
Subject: [PATCH 37/56] prevent cipptable from crashing a page
---
src/components/tables/CippTable.js | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/components/tables/CippTable.js b/src/components/tables/CippTable.js
index d29533dd4ced..8fcee1e887e5 100644
--- a/src/components/tables/CippTable.js
+++ b/src/components/tables/CippTable.js
@@ -163,9 +163,12 @@ export default function CippTable({
}
}
const [resetPaginationToggle, setResetPaginationToggle] = React.useState(false)
- const filteredItems = data.filter(
- (item) => JSON.stringify(item).toLowerCase().indexOf(filterText.toLowerCase()) !== -1,
- )
+ const filteredItems = Array.isArray(data)
+ ? data.filter(
+ (item) => JSON.stringify(item).toLowerCase().indexOf(filterText.toLowerCase()) !== -1,
+ )
+ : []
+
const applyFilter = (e) => {
setFilterText(e.target.value)
}
From 389b13ad0da5ba26d1d36a5c0cbb3cf1e9236870 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Mon, 14 Aug 2023 17:13:40 +0200
Subject: [PATCH 38/56] new bpa
---
src/components/tables/CellGenericFormat.js | 3 +
.../administration/EditCalendarPermissions.js | 2 +-
.../tenant/standards/BestPracticeAnalyser.js | 419 ++++++++----------
3 files changed, 179 insertions(+), 245 deletions(-)
diff --git a/src/components/tables/CellGenericFormat.js b/src/components/tables/CellGenericFormat.js
index 6c31e2d6f4b4..04b506efc1e4 100644
--- a/src/components/tables/CellGenericFormat.js
+++ b/src/components/tables/CellGenericFormat.js
@@ -78,6 +78,9 @@ export const cellGenericFormatter =
if (typeof cell === 'string') {
return CellTip(cell)
}
+ if (typeof cell === 'number') {
+ return {CellTip(cell)}
+ }
if (Array.isArray(cell) || typeof cell === 'object') {
return CellTip(JSON.stringify(cell))
}
diff --git a/src/views/email-exchange/administration/EditCalendarPermissions.js b/src/views/email-exchange/administration/EditCalendarPermissions.js
index 5998bb5491d0..fc63616542a1 100644
--- a/src/views/email-exchange/administration/EditCalendarPermissions.js
+++ b/src/views/email-exchange/administration/EditCalendarPermissions.js
@@ -214,7 +214,7 @@ const EditCalendarPermission = () => {
{userIsFetching && }
- {!userIsFetching && (
+ {!userIsFetching && !userError && (
<>
{user.length > 0 && (
diff --git a/src/views/tenant/standards/BestPracticeAnalyser.js b/src/views/tenant/standards/BestPracticeAnalyser.js
index 3361dad1b699..30fee159663a 100644
--- a/src/views/tenant/standards/BestPracticeAnalyser.js
+++ b/src/views/tenant/standards/BestPracticeAnalyser.js
@@ -1,18 +1,37 @@
-import React from 'react'
-import { CButton, CSpinner } from '@coreui/react'
+import React, { useEffect, useState } from 'react'
+import {
+ CButton,
+ CCard,
+ CCardBody,
+ CCardHeader,
+ CCardTitle,
+ CCol,
+ CCollapse,
+ CForm,
+ CRow,
+ CSpinner,
+} from '@coreui/react'
+import useQuery from 'src/hooks/useQuery'
+import { Field, Form, FormSpy } from 'react-final-form'
+import { RFFCFormInput, RFFCFormSelect } from 'src/components/forms'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
-import { faCheck, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'
-import { CippPageList } from 'src/components/layout'
-import { ModalService } from 'src/components/utilities'
import {
- CellBadge,
- CellBoolean,
- cellBooleanFormatter,
- CellProgressBar,
- cellDateFormatter,
-} from 'src/components/tables'
+ faChevronRight,
+ faChevronDown,
+ faSearch,
+ faExclamationTriangle,
+ faCheck,
+} from '@fortawesome/free-solid-svg-icons'
+import { CippTable } from 'src/components/tables'
+import { useSelector } from 'react-redux'
+import { useNavigate } from 'react-router-dom'
+import { CippPage } from 'src/components/layout/CippPage'
+import { useGenericGetRequestQuery, useLazyGenericGetRequestQuery } from 'src/store/api/app'
+import { OnChange } from 'react-final-form-listeners'
+import { queryString } from 'src/helpers'
+import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat'
import { useExecBestPracticeAnalyserMutation } from 'src/store/api/reports'
-
+import { ModalService } from 'src/components/utilities'
const RefreshAction = () => {
const [execBestPracticeAnalyser, { isLoading, isSuccess, error }] =
useExecBestPracticeAnalyserMutation()
@@ -38,248 +57,160 @@ const RefreshAction = () => {
)
}
-
const BestPracticeAnalyser = () => {
- const handleSharedMailboxes = ({ row }) => {
- ModalService.open({
- visible: true,
- componentType: 'list',
- data: row.DisabledSharedMailboxLogins.split('
'),
- title: `Shared Mailboxes with Enabled User Accounts`,
- })
+ const { data: templates = [] } = useGenericGetRequestQuery({
+ path: 'api/listBPATemplates',
+ })
+ let navigate = useNavigate()
+ const tenant = useSelector((state) => state.app.currentTenant)
+ let query = useQuery()
+ const Report = query.get('Report')
+ const SearchNow = query.get('SearchNow')
+ const [visibleA, setVisibleA] = useState(true)
+ const handleSubmit = async (values) => {
+ setVisibleA(false)
+ const shippedValues = {
+ SearchNow: true,
+ Report: values.reportTemplate,
+ random: (Math.random() + 1).toString(36).substring(7),
+ }
+ var queryString = Object.keys(shippedValues)
+ .map((key) => key + '=' + shippedValues[key])
+ .join('&')
+
+ navigate(`?${queryString}`)
}
+ const [execGraphRequest, graphrequest] = useLazyGenericGetRequestQuery()
+ const QueryColumns = { set: false, data: [] }
- const handleUnusedLicense = ({ row }) => {
- const columns = [
- {
- name: 'License',
- selector: (row) => row['License'],
- sortable: true,
- exportSelector: 'License',
- },
- {
- name: 'Purchased',
- selector: (row) => row['Purchased'],
- sortable: true,
- exportSelector: 'Purchased',
- },
- {
- name: 'Consumed',
- selector: (row) => row['Consumed'],
- sortable: true,
- exportSelector: 'Consumed',
- },
- ]
+ if (graphrequest.isSuccess) {
+ if (graphrequest.data.length === 0) {
+ graphrequest.data = [{ data: 'No Data Found' }]
+ }
- ModalService.open({
- data: row.UnusedLicenseList,
- componentType: 'table',
- componentProps: {
- columns,
- keyField: 'SKU',
- },
- title: `SKUs with Unassigned Licenses`,
- size: 'lg',
- })
- }
+ const getNestedValue = (obj, path) => {
+ if (!path) return undefined
+ return path.split('.').reduce((acc, part) => {
+ // Check for an array marker
+ const match = part.match(/(.*?)\[(\d+)\]/)
+ if (match) {
+ const propName = match[1]
+ const index = parseInt(match[2], 10)
+ return acc[propName] ? acc[propName][index] : undefined
+ }
+ // If no array marker, simply return the property value
+ return acc ? acc[part] : undefined
+ }, obj)
+ }
- const handleMessageCopy = ({ row }) => {
- ModalService.open({
- data: row.MessageCopyForSendList.split('
'),
- componentType: 'list',
- title: 'Message Copy for Send As',
- })
+ // Set columns
+ const flatObj = graphrequest.data.Columns
+ flatObj.map((col) =>
+ QueryColumns.data.push({
+ name: col.name,
+ selector: (row) => getNestedValue(row, col.value),
+ sortable: true,
+ exportSelector: col.value,
+ cell: cellGenericFormatter(),
+ }),
+ )
+ QueryColumns.set = true
}
- const columns = [
- {
- name: 'Tenant',
- selector: (row) => row['Tenant'],
- sortable: true,
- exportSelector: 'Tenant',
- },
- {
- name: 'Last Refresh',
- selector: (row) => row['LastRefresh'],
- // format: (cell) => {moment.utc(cell).format('MMM D YYYY')}
,
- cell: cellDateFormatter({ format: 'short' }),
- sortable: true,
- exportSelector: 'LastRefresh',
- minWidth: '145px',
- maxWidth: '145px',
- },
- {
- name: 'Unified Audit Log Enabled',
- selector: (row) => row['UnifiedAuditLog'],
- cell: cellBooleanFormatter(),
- sortable: true,
- exportSelector: 'UnifiedAuditLog',
- minWidth: '150px',
- maxWidth: '150px',
- },
- {
- name: 'Security Defaults Enabled',
- selector: (row) => row['SecureDefaultState'],
- cell: cellBooleanFormatter({ warning: true }),
- sortable: true,
- exportSelector: 'SecureDefaultState',
- minWidth: '150px',
- maxWidth: '150px',
- },
- {
- name: 'Message Copy for Send As',
- selector: (row) => row['MessageCopyForSend'],
- exportSelector: 'MessageCopyForSend',
- cell: (row, index, column) => {
- const cell = column.selector(row)
- if (cell === 'PASS') {
- return
- } else if (cell === 'FAIL') {
- return (
- handleMessageCopy({ row })}
- >{`${row.MessageCopyForSendAsCount} Users`}
- )
- }
- return
+ useEffect(() => {
+ execGraphRequest({
+ path: 'api/listBPA',
+ params: {
+ tenantFilter: tenant.defaultDomainName,
+ Report: Report,
+ SearchNow: SearchNow,
},
- sortable: true,
- minWidth: '150px',
- maxWidth: '150px',
- },
- {
- name: 'User Cannot Consent to Apps',
- selector: (row) => row['AdminConsentForApplications'],
- cell: cellBooleanFormatter({ reverse: true }),
- sortable: true,
- exportSelector: 'AdminConsentForApplications',
- minWidth: '150px',
- maxWidth: '150px',
- },
- {
- name: 'Passwords Do Not Expire',
- selector: (row) => row['DoNotExpirePasswords'],
- cell: cellBooleanFormatter(),
- sortable: true,
- exportSelector: 'DoNotExpirePasswords',
- minWidth: '150px',
- maxWidth: '150px',
- },
- {
- name: 'Privacy in Reports Enabled',
- selector: (row) => row['PrivacyEnabled'],
- cell: cellBooleanFormatter({ reverse: false, warning: false }),
- sortable: true,
- exportSelector: 'PrivacyEnabled',
- minWidth: '150px',
- maxWidth: '150px',
- },
- {
- name: 'Self Service Password Reset Enabled',
- selector: (row) => row['SelfServicePasswordReset'],
- exportSelector: 'SelfServicePasswordReset',
- cell: cellBooleanFormatter(),
- sortable: true,
- minWidth: '150px',
- maxWidth: '150px',
- },
- {
- name: 'TAP Enabled',
- selector: (row) => row['TAPEnabled'],
- exportSelector: 'TAPEnabled',
- cell: cellBooleanFormatter({ reverse: false, warning: true }),
- sortable: true,
- minWidth: '150px',
- maxWidth: '150px',
- },
- {
- name: 'MFA Registration Nudge Enabled',
- selector: (row) => row['MFANudge'],
- exportSelector: 'MFANudge',
- cell: cellBooleanFormatter({ reverse: false, warning: true }),
- sortable: true,
- minWidth: '150px',
- maxWidth: '150px',
- },
- {
- name: 'Shared Mailboxes Logins Disabled',
- selector: (row) => row['DisabledSharedMailboxLoginsCount'],
- exportSelector: 'DisabledSharedMailboxLoginsCount',
- cell: (row, index, column) => {
- const cell = column.selector(row)
- if (cell > 0) {
- return (
- handleSharedMailboxes({ row })}
- >
- {cell} User{cell > 1 ? 's' : ''}
-
- )
- } else if (cell === 0) {
- return
- }
- return
- },
- sortable: true,
- minWidth: '150px',
- maxWidth: '150px',
- },
- {
- name: 'Unused Licenses',
- selector: (row) => row['UnusedLicensesResult'],
- exportSelector: 'UnusedLicensesResult',
- cell: (row, index, column) => {
- const cell = column.selector(row)
- if (cell === 'FAIL') {
- return (
- handleUnusedLicense({ row })}>
- {row.UnusedLicensesCount} SKU{row.UnusedLicensesCount > 1 ? 's' : ''} / Lic{' '}
- {row.UnusedLicensesTotal}
-
- )
- } else if (cell === 'PASS') {
- return
- }
- return
- },
- sortable: true,
- minWidth: '150px',
- maxWidth: '150px',
- },
- {
- name: 'Secure Score',
- selector: (row) => row['SecureScorePercentage'],
- exportSelector: 'SecureScorePercentage',
- cell: (row, index, column) => {
- const cell = column.selector(row)
- if (!cell) {
- return
- }
- return
- },
- sortable: true,
- minWidth: '150px',
- maxWidth: '150px',
- },
- ]
+ })
+ }, [Report, execGraphRequest, tenant.defaultDomainName, query])
return (
- ],
- },
- }}
- />
+ <>
+
+
+
+
+
+ Report Settings
+ setVisibleA(!visibleA)}>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {!SearchNow && Choose a BPA Report to get started.}
+ {graphrequest.isSuccess && QueryColumns.set && SearchNow && (
+
+
+ Results
+
+
+ ],
+ }}
+ />
+
+
+ )}
+
+
+
+ >
)
}
From 2b59d07b6e951b1514e8351ce8d60c68dfba5621 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Mon, 14 Aug 2023 23:10:19 +0200
Subject: [PATCH 39/56] add button tables
---
src/components/tables/CellTable.js | 46 +++++++++++++++++++
.../tenant/standards/BestPracticeAnalyser.js | 45 +++++++++++++-----
2 files changed, 79 insertions(+), 12 deletions(-)
create mode 100644 src/components/tables/CellTable.js
diff --git a/src/components/tables/CellTable.js b/src/components/tables/CellTable.js
new file mode 100644
index 000000000000..004cdb715c48
--- /dev/null
+++ b/src/components/tables/CellTable.js
@@ -0,0 +1,46 @@
+import React from 'react'
+import { CButton } from '@coreui/react'
+import { ModalService } from '../utilities'
+import { CBadge } from '@coreui/react'
+import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
+import { faCheckCircle } from '@fortawesome/free-solid-svg-icons'
+import { cellGenericFormatter } from './CellGenericFormat'
+
+export default function cellTable(row, column, propertyName) {
+ const handleTable = ({ row }) => {
+ const QueryColumns = []
+ const columns = Object.keys(row[propertyName][0]).map((key) => {
+ QueryColumns.push({
+ name: key,
+ selector: (row) => row[key], // Accessing the property using the key
+ sortable: true,
+ exportSelector: key,
+ cell: cellGenericFormatter(),
+ })
+ })
+ ModalService.open({
+ data: row[propertyName],
+ componentType: 'table',
+ componentProps: {
+ columns: QueryColumns,
+ keyField: 'SKU',
+ },
+ title: `Data`,
+ size: 'lg',
+ })
+ }
+
+ if (!row[propertyName] || !Array.isArray(row[propertyName]) || row.length === 0) {
+ return
+ }
+
+ return (
+ handleTable({ row })}>
+ {row[propertyName].length} Items
+
+ )
+}
+
+export const cellTableFormatter = (propertyName) => (row, index, column, id) => {
+ return cellTable(row, column, propertyName)
+}
diff --git a/src/views/tenant/standards/BestPracticeAnalyser.js b/src/views/tenant/standards/BestPracticeAnalyser.js
index 30fee159663a..83d5c52866ce 100644
--- a/src/views/tenant/standards/BestPracticeAnalyser.js
+++ b/src/views/tenant/standards/BestPracticeAnalyser.js
@@ -22,7 +22,7 @@ import {
faExclamationTriangle,
faCheck,
} from '@fortawesome/free-solid-svg-icons'
-import { CippTable } from 'src/components/tables'
+import { CippTable, cellBooleanFormatter } from 'src/components/tables'
import { useSelector } from 'react-redux'
import { useNavigate } from 'react-router-dom'
import { CippPage } from 'src/components/layout/CippPage'
@@ -32,6 +32,7 @@ import { queryString } from 'src/helpers'
import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat'
import { useExecBestPracticeAnalyserMutation } from 'src/store/api/reports'
import { ModalService } from 'src/components/utilities'
+import { cellTableFormatter } from 'src/components/tables/CellTable'
const RefreshAction = () => {
const [execBestPracticeAnalyser, { isLoading, isSuccess, error }] =
useExecBestPracticeAnalyserMutation()
@@ -58,7 +59,7 @@ const RefreshAction = () => {
)
}
const BestPracticeAnalyser = () => {
- const { data: templates = [] } = useGenericGetRequestQuery({
+ const { data: templates = [], isLoading: templatesfetch } = useGenericGetRequestQuery({
path: 'api/listBPATemplates',
})
let navigate = useNavigate()
@@ -102,18 +103,36 @@ const BestPracticeAnalyser = () => {
return acc ? acc[part] : undefined
}, obj)
}
-
- // Set columns
const flatObj = graphrequest.data.Columns
- flatObj.map((col) =>
+
+ flatObj.map((col) => {
+ // Determine the cell selector based on the 'formatter' property
+ let cellSelector
+ if (col.formatter) {
+ switch (col.formatter) {
+ case 'bool':
+ cellSelector = cellBooleanFormatter()
+ break
+ case 'table':
+ cellSelector = cellTableFormatter(col.value)
+ break
+ default:
+ cellSelector = cellGenericFormatter()
+ break
+ }
+ } else {
+ cellSelector = cellGenericFormatter()
+ }
+
QueryColumns.data.push({
name: col.name,
selector: (row) => getNestedValue(row, col.value),
sortable: true,
exportSelector: col.value,
- cell: cellGenericFormatter(),
- }),
- )
+ cell: cellSelector, // Use the determined cell selector
+ })
+ })
+
QueryColumns.set = true
}
@@ -157,13 +176,14 @@ const BestPracticeAnalyser = () => {
({
label: template.Name,
value: template.Name,
}))}
/>
+ {templatesfetch && }
@@ -187,11 +207,12 @@ const BestPracticeAnalyser = () => {
- {!SearchNow && Choose a BPA Report to get started.}
- {graphrequest.isSuccess && QueryColumns.set && SearchNow && (
+ {graphrequest.isUninitialized && Choose a BPA Report to get started.}
+ {graphrequest.isFetching && }
+ {graphrequest.isSuccess && QueryColumns.set && (
- Results
+ Best Practice Report
Date: Tue, 15 Aug 2023 11:49:21 +0200
Subject: [PATCH 40/56] BPA Improvements and CIPP Table improvements
---
src/components/tables/CellGenericFormat.js | 3 +
src/components/tables/CippTable.js | 55 ++++++++++---------
.../tenant/standards/BestPracticeAnalyser.js | 20 ++++++-
3 files changed, 49 insertions(+), 29 deletions(-)
diff --git a/src/components/tables/CellGenericFormat.js b/src/components/tables/CellGenericFormat.js
index 04b506efc1e4..e442378a5633 100644
--- a/src/components/tables/CellGenericFormat.js
+++ b/src/components/tables/CellGenericFormat.js
@@ -76,6 +76,9 @@ export const cellGenericFormatter =
return CellBoolean({ cell, warning, reverse, colourless, noDataIsFalse })
}
if (typeof cell === 'string') {
+ if (cell.toLowerCase() === 'failed') {
+ return {CellTip('Failed to retrieve from API')}
+ }
return CellTip(cell)
}
if (typeof cell === 'number') {
diff --git a/src/components/tables/CippTable.js b/src/components/tables/CippTable.js
index 8fcee1e887e5..75e3380d2a79 100644
--- a/src/components/tables/CippTable.js
+++ b/src/components/tables/CippTable.js
@@ -339,32 +339,35 @@ export default function CippTable({
return null
})
- const filtered = data.map((obj) =>
- // eslint-disable-next-line no-sequences
- /* keys.reduce((acc, curr) => ((acc[curr] = obj[curr]), acc), {}),*/
- keys.reduce((acc, curr) => {
- const key = curr.split('/')
- if (key.length > 1) {
- var property = obj
- for (var x = 0; x < key.length; x++) {
- if (property.hasOwnProperty(key[x]) && property[key[x]] !== null) {
- property = property[key[x]]
- } else {
- property = 'n/a'
- break
- }
- }
- acc[curr] = property
- } else {
- if (typeof exportFormatter[curr] === 'function') {
- acc[curr] = exportFormatter[curr]({ cell: obj[curr] })
- } else {
- acc[curr] = obj[curr]
- }
- }
- return acc
- }, {}),
- )
+ const filtered =
+ Array.isArray(data) && data.length > 0
+ ? data.map((obj) =>
+ // eslint-disable-next-line no-sequences
+ /* keys.reduce((acc, curr) => ((acc[curr] = obj[curr]), acc), {}),*/
+ keys.reduce((acc, curr) => {
+ const key = curr.split('/')
+ if (key.length > 1) {
+ var property = obj
+ for (var x = 0; x < key.length; x++) {
+ if (property.hasOwnProperty(key[x]) && property[key[x]] !== null) {
+ property = property[key[x]]
+ } else {
+ property = 'n/a'
+ break
+ }
+ }
+ acc[curr] = property
+ } else {
+ if (typeof exportFormatter[curr] === 'function') {
+ acc[curr] = exportFormatter[curr]({ cell: obj[curr] })
+ } else {
+ acc[curr] = obj[curr]
+ }
+ }
+ return acc
+ }, {}),
+ )
+ : []
if (!disablePDFExport) {
if (dynamicColumns === true) {
diff --git a/src/views/tenant/standards/BestPracticeAnalyser.js b/src/views/tenant/standards/BestPracticeAnalyser.js
index 83d5c52866ce..3a8cf80ea7e7 100644
--- a/src/views/tenant/standards/BestPracticeAnalyser.js
+++ b/src/views/tenant/standards/BestPracticeAnalyser.js
@@ -29,7 +29,7 @@ import { CippPage } from 'src/components/layout/CippPage'
import { useGenericGetRequestQuery, useLazyGenericGetRequestQuery } from 'src/store/api/app'
import { OnChange } from 'react-final-form-listeners'
import { queryString } from 'src/helpers'
-import { cellGenericFormatter } from 'src/components/tables/CellGenericFormat'
+import { CellTip, cellGenericFormatter } from 'src/components/tables/CellGenericFormat'
import { useExecBestPracticeAnalyserMutation } from 'src/store/api/reports'
import { ModalService } from 'src/components/utilities'
import { cellTableFormatter } from 'src/components/tables/CellTable'
@@ -82,7 +82,18 @@ const BestPracticeAnalyser = () => {
navigate(`?${queryString}`)
}
const [execGraphRequest, graphrequest] = useLazyGenericGetRequestQuery()
- const QueryColumns = { set: false, data: [] }
+ const QueryColumns = {
+ set: false,
+ data: [
+ {
+ name: 'Tenant',
+ selector: (row) => row['Tenant'],
+ sortable: true,
+ exportSelector: 'Tenant',
+ cell: (row) => CellTip(row['Tenant']),
+ },
+ ],
+ }
if (graphrequest.isSuccess) {
if (graphrequest.data.length === 0) {
@@ -103,7 +114,7 @@ const BestPracticeAnalyser = () => {
return acc ? acc[part] : undefined
}, obj)
}
- const flatObj = graphrequest.data.Columns
+ const flatObj = graphrequest.data.Columns ? graphrequest.data.Columns : []
flatObj.map((col) => {
// Determine the cell selector based on the 'formatter' property
@@ -113,6 +124,9 @@ const BestPracticeAnalyser = () => {
case 'bool':
cellSelector = cellBooleanFormatter()
break
+ case 'reverseBool':
+ cellSelector = cellBooleanFormatter({ reverse: true })
+ break
case 'table':
cellSelector = cellTableFormatter(col.value)
break
From a925f69184dd961ded3af28c407e81e040d13f45 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Tue, 15 Aug 2023 12:54:55 +0200
Subject: [PATCH 41/56] improvements access check
---
src/views/cipp/CIPPSettings.js | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/views/cipp/CIPPSettings.js b/src/views/cipp/CIPPSettings.js
index 7109c76c6cc7..8976c42f38b3 100644
--- a/src/views/cipp/CIPPSettings.js
+++ b/src/views/cipp/CIPPSettings.js
@@ -152,7 +152,10 @@ const checkAccessColumns = [
{
name: 'Result',
selector: (row) => row['Status'],
- grow: 1,
+ },
+ {
+ name: 'Missing GDAP Roles',
+ selector: (row) => row['GDAP'],
},
]
From d2f35b4724bb6c6817e1bf100cdc70a3569bfc25 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Tue, 15 Aug 2023 13:20:00 +0200
Subject: [PATCH 42/56] improved layout
---
src/views/cipp/CIPPSettings.js | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/views/cipp/CIPPSettings.js b/src/views/cipp/CIPPSettings.js
index 8976c42f38b3..19520444cda2 100644
--- a/src/views/cipp/CIPPSettings.js
+++ b/src/views/cipp/CIPPSettings.js
@@ -152,6 +152,8 @@ const checkAccessColumns = [
{
name: 'Result',
selector: (row) => row['Status'],
+ minWidth: '380px',
+ maxWidth: '380px',
},
{
name: 'Missing GDAP Roles',
From 33735d46ed23f1d9d12fcd0d2983ded1db47433a Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Tue, 15 Aug 2023 15:49:11 +0200
Subject: [PATCH 43/56] improvements bpa overview
---
src/views/tenant/standards/BestPracticeAnalyser.js | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/views/tenant/standards/BestPracticeAnalyser.js b/src/views/tenant/standards/BestPracticeAnalyser.js
index 3a8cf80ea7e7..fe0a61c991bf 100644
--- a/src/views/tenant/standards/BestPracticeAnalyser.js
+++ b/src/views/tenant/standards/BestPracticeAnalyser.js
@@ -127,6 +127,9 @@ const BestPracticeAnalyser = () => {
case 'reverseBool':
cellSelector = cellBooleanFormatter({ reverse: true })
break
+ case 'warnBool':
+ cellSelector = cellBooleanFormatter({ warning: true })
+ break
case 'table':
cellSelector = cellTableFormatter(col.value)
break
From d01b2d1c04cbbbdced7e6e8afc032d6c7cb391a2 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Tue, 15 Aug 2023 17:06:29 +0200
Subject: [PATCH 44/56] minor fixes
---
src/views/tenant/standards/BestPracticeAnalyser.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/views/tenant/standards/BestPracticeAnalyser.js b/src/views/tenant/standards/BestPracticeAnalyser.js
index fe0a61c991bf..2dde5f1460e4 100644
--- a/src/views/tenant/standards/BestPracticeAnalyser.js
+++ b/src/views/tenant/standards/BestPracticeAnalyser.js
@@ -233,6 +233,7 @@ const BestPracticeAnalyser = () => {
Date: Wed, 16 Aug 2023 01:23:52 +0200
Subject: [PATCH 45/56] prep for release
---
.../tenant/standards/BestPracticeAnalyser.js | 130 +++++++++++++++---
1 file changed, 113 insertions(+), 17 deletions(-)
diff --git a/src/views/tenant/standards/BestPracticeAnalyser.js b/src/views/tenant/standards/BestPracticeAnalyser.js
index 2dde5f1460e4..64f8c130ee37 100644
--- a/src/views/tenant/standards/BestPracticeAnalyser.js
+++ b/src/views/tenant/standards/BestPracticeAnalyser.js
@@ -1,9 +1,11 @@
import React, { useEffect, useState } from 'react'
import {
+ CBadge,
CButton,
CCard,
CCardBody,
CCardHeader,
+ CCardText,
CCardTitle,
CCol,
CCollapse,
@@ -21,6 +23,8 @@ import {
faSearch,
faExclamationTriangle,
faCheck,
+ faCross,
+ faTimes,
} from '@fortawesome/free-solid-svg-icons'
import { CippTable, cellBooleanFormatter } from 'src/components/tables'
import { useSelector } from 'react-redux'
@@ -58,6 +62,37 @@ const RefreshAction = () => {
)
}
+
+const getsubcolumns = (data) => {
+ const flatObj = data && data.length > 0 ? data : [{ data: 'No Data Found' }]
+ const QueryColumns = []
+ if (flatObj[0]) {
+ Object.keys(flatObj[0]).map((key) => {
+ QueryColumns.push({
+ name: key,
+ selector: (row) => row[key], // Accessing the property using the key
+ sortable: true,
+ exportSelector: key,
+ cell: cellGenericFormatter(),
+ })
+ })
+ }
+ return QueryColumns
+}
+const getNestedValue = (obj, path) => {
+ if (!path) return undefined
+ return path.split('.').reduce((acc, part) => {
+ // Check for an array marker
+ const match = part.match(/(.*?)\[(\d+)\]/)
+ if (match) {
+ const propName = match[1]
+ const index = parseInt(match[2], 10)
+ return acc[propName] ? acc[propName][index] : undefined
+ }
+ // If no array marker, simply return the property value
+ return acc ? acc[part] : undefined
+ }, obj)
+}
const BestPracticeAnalyser = () => {
const { data: templates = [], isLoading: templatesfetch } = useGenericGetRequestQuery({
path: 'api/listBPATemplates',
@@ -73,6 +108,7 @@ const BestPracticeAnalyser = () => {
const shippedValues = {
SearchNow: true,
Report: values.reportTemplate,
+ tenantFilter: tenant.customerId,
random: (Math.random() + 1).toString(36).substring(7),
}
var queryString = Object.keys(shippedValues)
@@ -99,21 +135,6 @@ const BestPracticeAnalyser = () => {
if (graphrequest.data.length === 0) {
graphrequest.data = [{ data: 'No Data Found' }]
}
-
- const getNestedValue = (obj, path) => {
- if (!path) return undefined
- return path.split('.').reduce((acc, part) => {
- // Check for an array marker
- const match = part.match(/(.*?)\[(\d+)\]/)
- if (match) {
- const propName = match[1]
- const index = parseInt(match[2], 10)
- return acc[propName] ? acc[propName][index] : undefined
- }
- // If no array marker, simply return the property value
- return acc ? acc[part] : undefined
- }, obj)
- }
const flatObj = graphrequest.data.Columns ? graphrequest.data.Columns : []
flatObj.map((col) => {
@@ -157,7 +178,7 @@ const BestPracticeAnalyser = () => {
execGraphRequest({
path: 'api/listBPA',
params: {
- tenantFilter: tenant.defaultDomainName,
+ tenantFilter: tenant.customerId,
Report: Report,
SearchNow: SearchNow,
},
@@ -226,7 +247,7 @@ const BestPracticeAnalyser = () => {
{graphrequest.isUninitialized && Choose a BPA Report to get started.}
{graphrequest.isFetching && }
- {graphrequest.isSuccess && QueryColumns.set && (
+ {graphrequest.isSuccess && QueryColumns.set && graphrequest.data.Style == 'Table' && (
Best Practice Report
@@ -246,6 +267,81 @@ const BestPracticeAnalyser = () => {
)}
+ {graphrequest.isSuccess && QueryColumns.set && graphrequest.data.Style == 'Tenant' && (
+ <>
+
+ {graphrequest.data.Columns.map((info, idx) => (
+
+
+
+ {info.name}
+
+
+
+ {info.formatter === 'bool' && (
+
+
+ {graphrequest.data.Data[info.value] ? 'Yes' : 'No'}
+
+ )}
+ {info.formatter === 'reverseBool' && (
+
+
+ {graphrequest.data.Data[info.value] ? 'No' : 'Yes'}
+
+ )}
+ {info.formatter === 'warnBool' && (
+
+
+ {graphrequest.data.Data[info.value] ? 'Yes' : 'No'}
+
+ )}
+
+ {info.formatter === 'table' && (
+
+ )}
+
+ {info.formatter === 'number' && (
+
+ {getNestedValue(graphrequest.data.Data, info.value)}
+
+ )}
+
+
+ {info.desc}
+
+
+
+
+ ))}
+
+ >
+ )}
From 889b433102128e93332670ab1c4141c72eaaa303 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Wed, 16 Aug 2023 01:28:32 +0200
Subject: [PATCH 46/56] minor fixes
---
src/views/tenant/standards/BestPracticeAnalyser.js | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/views/tenant/standards/BestPracticeAnalyser.js b/src/views/tenant/standards/BestPracticeAnalyser.js
index 64f8c130ee37..bf3b06504930 100644
--- a/src/views/tenant/standards/BestPracticeAnalyser.js
+++ b/src/views/tenant/standards/BestPracticeAnalyser.js
@@ -25,6 +25,7 @@ import {
faCheck,
faCross,
faTimes,
+ faExclamation,
} from '@fortawesome/free-solid-svg-icons'
import { CippTable, cellBooleanFormatter } from 'src/components/tables'
import { useSelector } from 'react-redux'
@@ -307,7 +308,9 @@ const BestPracticeAnalyser = () => {
color={graphrequest.data.Data[info.value] ? 'info' : 'warning'}
>
From 404f4898ea07e15faadb4d873a49db2a4ea3ca3a Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Wed, 16 Aug 2023 01:36:03 +0200
Subject: [PATCH 47/56] theme improvements
---
src/scss/_themes.scss | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/scss/_themes.scss b/src/scss/_themes.scss
index 40462dbefaed..ccbfa5a592c3 100644
--- a/src/scss/_themes.scss
+++ b/src/scss/_themes.scss
@@ -408,7 +408,7 @@
--cui-color-orange: #f77f00;
--cui-color-table-border: rgba(146, 154, 158, 0.8);
--cui-color-card-shadow: rgba(207, 192, 192, 0.2);
-
+ --text-medium-emphasis: rgba(255, 255, 255, 0.6);
// Core UI Impact theme variables.
--cui-header-hover-color: var(--cyberdrain-light);
--cui-header-active-color: var(--cyberdrain-accent-blue);
@@ -519,7 +519,9 @@
overflow: hidden;
z-index: 1; /* Necessary for overflow: hidden to work correctly in Safari */
}
-
+ .text-medium-emphasis {
+ color: var(--text-medium-emphasis) !important;
+ }
.react-loading-skeleton::after {
content: ' ';
display: var(--pseudo-element-display);
From b989aa83e7b6f8056f88e4e7aec144af475c61d8 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Wed, 16 Aug 2023 01:53:06 +0200
Subject: [PATCH 48/56] upped versions
---
public/version_latest.txt | 2 +-
version_latest.txt | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/public/version_latest.txt b/public/version_latest.txt
index 0be1fc7d2427..0c89fc927e32 100644
--- a/public/version_latest.txt
+++ b/public/version_latest.txt
@@ -1 +1 @@
-3.8.0
\ No newline at end of file
+4.0.0
\ No newline at end of file
diff --git a/version_latest.txt b/version_latest.txt
index 0be1fc7d2427..0c89fc927e32 100644
--- a/version_latest.txt
+++ b/version_latest.txt
@@ -1 +1 @@
-3.8.0
\ No newline at end of file
+4.0.0
\ No newline at end of file
From a50f1e250ff16b4fac617977d3b3dd1f422d0cc2 Mon Sep 17 00:00:00 2001
From: John Duprey
Date: Tue, 15 Aug 2023 21:40:47 -0400
Subject: [PATCH 49/56] BPA - Set report template in state for tenant change
---
src/views/tenant/standards/BestPracticeAnalyser.js | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/views/tenant/standards/BestPracticeAnalyser.js b/src/views/tenant/standards/BestPracticeAnalyser.js
index bf3b06504930..fbacda2154d6 100644
--- a/src/views/tenant/standards/BestPracticeAnalyser.js
+++ b/src/views/tenant/standards/BestPracticeAnalyser.js
@@ -95,6 +95,7 @@ const getNestedValue = (obj, path) => {
}, obj)
}
const BestPracticeAnalyser = () => {
+ const [reportTemplate, setReportTemplate] = useState('CIPP Best Practices v1.0 - Table view')
const { data: templates = [], isLoading: templatesfetch } = useGenericGetRequestQuery({
path: 'api/listBPATemplates',
})
@@ -106,9 +107,10 @@ const BestPracticeAnalyser = () => {
const [visibleA, setVisibleA] = useState(true)
const handleSubmit = async (values) => {
setVisibleA(false)
+ setReportTemplate(values.reportTemplate)
const shippedValues = {
SearchNow: true,
- Report: values.reportTemplate,
+ Report: reportTemplate,
tenantFilter: tenant.customerId,
random: (Math.random() + 1).toString(36).substring(7),
}
@@ -180,7 +182,7 @@ const BestPracticeAnalyser = () => {
path: 'api/listBPA',
params: {
tenantFilter: tenant.customerId,
- Report: Report,
+ Report: reportTemplate,
SearchNow: SearchNow,
},
})
From 8975ae6c1687ef36fc6f58c52debcadf9abf7052 Mon Sep 17 00:00:00 2001
From: John Duprey
Date: Tue, 15 Aug 2023 22:06:34 -0400
Subject: [PATCH 50/56] Tweak column sizes for smaller devices
---
src/views/tenant/standards/BestPracticeAnalyser.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/tenant/standards/BestPracticeAnalyser.js b/src/views/tenant/standards/BestPracticeAnalyser.js
index fbacda2154d6..f12b3b9d1e90 100644
--- a/src/views/tenant/standards/BestPracticeAnalyser.js
+++ b/src/views/tenant/standards/BestPracticeAnalyser.js
@@ -274,7 +274,7 @@ const BestPracticeAnalyser = () => {
<>
{graphrequest.data.Columns.map((info, idx) => (
-
+
{info.name}
From 028a2710a71259822aba832d18297f2fd69bd622 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Wed, 16 Aug 2023 10:32:36 +0200
Subject: [PATCH 51/56] fixes #1688
---
src/views/tenant/conditional/DeployCA.js | 27 +++++++++++++++++++++---
1 file changed, 24 insertions(+), 3 deletions(-)
diff --git a/src/views/tenant/conditional/DeployCA.js b/src/views/tenant/conditional/DeployCA.js
index 845431f2d738..edcda312215f 100644
--- a/src/views/tenant/conditional/DeployCA.js
+++ b/src/views/tenant/conditional/DeployCA.js
@@ -6,7 +6,7 @@ import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'
import { CippWizard } from 'src/components/layout'
import { WizardTableField } from 'src/components/tables'
import PropTypes from 'prop-types'
-import { RFFCFormSelect, RFFCFormTextarea } from 'src/components/forms'
+import { RFFCFormRadio, RFFCFormSelect, RFFCFormTextarea } from 'src/components/forms'
import { useLazyGenericGetRequestQuery, useLazyGenericPostRequestQuery } from 'src/store/api/app'
import { OnChange } from 'react-final-form-listeners'
@@ -41,7 +41,6 @@ const AddPolicy = () => {
values.TemplateType = values.Type
genericPostRequest({ path: '/api/AddCAPolicy', values: values })
}
- /* eslint-disable react/prop-types */
const WhenFieldChanges = ({ field, set }) => (
{(
@@ -147,6 +146,29 @@ const AddPolicy = () => {
/>
+
+
+
+
@@ -159,7 +181,6 @@ const AddPolicy = () => {
{!postResults.isSuccess && (
{(props) => {
- /* eslint-disable react/prop-types */
return (
<>
From 3e58a798738c2aaa86ab8af49271838ae382e7d4 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Wed, 16 Aug 2023 10:44:01 +0200
Subject: [PATCH 52/56] added oauth standard
---
src/data/standards.json | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/data/standards.json b/src/data/standards.json
index 5139f1e4b311..bfc4f5df0b4b 100644
--- a/src/data/standards.json
+++ b/src/data/standards.json
@@ -180,6 +180,12 @@
},
"label": "Require admin consent for applications (Prevent OAuth phishing.)"
},
+ {
+ "cat": "AAD",
+ "name": "standards.OauthConsentLowSec",
+ "helpText": "",
+ "label": "Allow users to consent to applications with low security risk (Prevent OAuth phishing. Lower impact, less secure.)"
+ },
{
"cat": "AAD",
"name": "standards.LegacyMFA",
From 3f0167a51d42498c5bc8c250eef29928d1d67a26 Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Wed, 16 Aug 2023 14:27:56 +0200
Subject: [PATCH 53/56] added clearer failure if cell is failed
---
src/components/tables/CellBoolean.js | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/components/tables/CellBoolean.js b/src/components/tables/CellBoolean.js
index edbe64264690..8d5a31138f63 100644
--- a/src/components/tables/CellBoolean.js
+++ b/src/components/tables/CellBoolean.js
@@ -7,6 +7,7 @@ import {
faExclamationCircle,
} from '@fortawesome/free-solid-svg-icons'
import { CellBadge } from 'src/components/tables'
+import { CBadge } from '@coreui/react'
const IconWarning = () =>
const IconError = () =>
@@ -37,6 +38,9 @@ export default function CellBoolean({
noDataIsFalse = false,
}) {
let normalized = cell
+ if (cell === 'FAILED') {
+ return Failed. Check Logs
+ }
if (typeof cell === 'boolean') {
normalized = cell
} else if (typeof cell === 'string') {
From 651033e9534a3645110abfaebd0ecd9a71dcc3ed Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Wed, 16 Aug 2023 15:10:57 +0200
Subject: [PATCH 54/56] logos
---
.../RGB_Net_Friends_Logo_White_Color_Icon.png | Bin 0 -> 14343 bytes
src/assets/images/netfriends.png | Bin 0 -> 3779 bytes
src/components/layout/AppFooter.js | 8 ++++++--
3 files changed, 6 insertions(+), 2 deletions(-)
create mode 100644 src/assets/images/RGB_Net_Friends_Logo_White_Color_Icon.png
create mode 100644 src/assets/images/netfriends.png
diff --git a/src/assets/images/RGB_Net_Friends_Logo_White_Color_Icon.png b/src/assets/images/RGB_Net_Friends_Logo_White_Color_Icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..4beefca6aa31f700f5bcaec9178e3c76322d1f6b
GIT binary patch
literal 14343
zcmcJ$_ghoX6EI4Xq97m&(h=#sgQ1J`P(A^r7pc+}2uN=VD$)~5r~(OwUITZ0y95LTRN7iEKm-KDaQyu;
zIVt{nY1vMKZz$esnfVY9h&;Xh5x$2j`wA0vY7M(7$5SOBApdnPsnGg`Dh>_gRh9KPb|8oTAaYnfacO{lz5jZHQMbXRd$xU#-
zsHZhLbn%wr&$R*E-qN`iXWBrF`tq~H+&{|f%q#~Xw0W2z&bEeL`F9U)XY}H8p49W1
z;OP{CV^CD=JN9;#93+vWpR}}hzdLcDA-q6}wPrP5t=O6h{%7^a`M{)9)suoik#9||gxwqEl&*sFHB{RdRiXdnO%I9lE5SS_wCR1}U*
z=xzD$c7WImLsv5ycKV>NgRYP*dZl#+S)&TFv$vz7_l@``l=r>pRlUmxb0|`8#UgjK
zeu>-5vbx75Z%$IM=XzC_pEUAI*YEguA-Rg^+J@y(#lxBTE-V|81bK^Gh?B2QWiozo
zvOhi)FS~Ai>c77Wc`tM0UCW(4?D+S<#e+FMMSH|}P!%jKgbB0W=`v7PAlMtf2#`+)
zyX-csvwfFo-Yvkx&7f~pKb$@iq&E|suH9X!&ok=LxZByQ!X&tvx&h;qyH&lsk9o#w
zolY84qgGSbuSBsY`E&^xBWmROx9m$jH=H$$@?Q9{arMW^?jOgbn?|g}g2ChsinSu5
z0TARg^b!w65JU@^++s+47&%JCL=|UAQbwm6L$yzmBn5Kb7->86OQms-+ywt;~Gp@et5EOIm3ti(@
z;_T0^&}7P4XJy!;mqeppRH0pdDzj<-G@FT3FMzx4W
zMVz%t;;nH}j><;(SJSFalC;@WIyL8S>E$?Br7b&WA1#ps@e{RG75S&@o(CKHrcVlg
zkSL?Q#$b{DRfw!`iCoKHfN0F6um`Uu;l9(eI}wPi`(P2i2}-S4N@Vs-5<4OP>1BJW
zI3B;4Zy&{1o1#ciT)44z^!O_k05^xn>X-K0r9%3JawGdAofcyJ+n_r|0b^n-UI(^G
z)EDNX##7zEr~LpU0u^TC`fuOO_cw_Kzd}Jals9M0N^JfBT8JxY;naCoT(-)m@bTy%
z@aa61Dwel8y)`STZ>^|&D`2Z{Ne5ghS=@|6Z+rtRWBb^Cs+5Wd2CX3D_Ck@HiX1YT
zxLxbDrWt5|rwVCT6!AZ6lfs)SgEa{ijIIbadsT~b+cg2
zBXYN%@~+WqKuyMBkf!Xah0L41$hCO)*UT<2UCrDFiEMYeDtq}Hil>IyeV$99$B^qxOPZ5uQg4*QGo_bGmM|E&81lWn&4ogZ}UF&1T1I?}|W
z`D43qXqnBVl^=!H4)(b%Io%3_ZAbQo`)`xAXAavr2=a~C6Kf0P
zf@BVY&e
zyl?P&HVFeFRaML>uQa={T2q9`*qMIplm>+i@vz!pj!ogSPGiL^%EIlV`8llYk)C4K
zDw%HT*zue5=G?yi5Z4VI+$?Vsjeg?`+guNeT;GY5wfMQJl_oQGReswkof=|MRiu3x
zIeyIyJBU6%0vA&AD)JXeyGUBqCF3N625h5i@1K$;krmZf^lV7J#o7N}4o-N$Ler`>
z*}92#X5;t`bhB*oqR_vF%HP#Vi(ZPd?um3H*l`Z}!Jf*+4$)CT4^xuweVs}wCm#LS
zrJ*`i0so10cT@Ecji+*XSXxAIIi|_<;Lfs7o2$9;+qru9fF)5!vwrHhQIJ&Dx
zeH(_O^|BNV90(qaIsGUib(|OX1}lDbEycyg4f;d#c)tS7Kt!pz8Ki7gme>T4w$Y;f
z^;5zvM0v2RUQ_l`%`Vd?(vDJlerFv$35d;6EOSjP_IKf5&}HvmuhN>he-4?)58dR3
zaxRk`^Z}1E3V6a5L;C3W}f2d;E2a7UOw*2F{=6pdDm66S$^Dn!iyUwQA-A3
zFBgJ0LcO=zUPQ`>fgi+$wiFfhQvN-Z?lW~@o~tDF&Xx{g{_k`pwlt*6bLD3>T(6DS
zLAw)42l?adksC3@E%(nT=aH4fNGV^SffMQ5$OF~Frk#1_ag|C=fC{Ix!tnguYpp1(Iyp=xmB_f5>=r#QLJvCg5{HYiMJ=$N5v#4e~&jR
zOYogN;@;Rf;hf-CXFSq$aeptm5(&N9aO;hCQfMOZ{ZB&G1zwfp8SU-Z9Pil@Z_KNE
zdCXLrtymwnUPBIyZI_R4KemMZ_qxemm-TzdJE(NDB4hyj)X=NVl4nwMt!XqRH)1}v
zH=gLgu6nKtA_3>&uKDN^`mW$+*d{GGB^xa%s9;?j6
zzjE4eLW1xxZd!|3e*ukp@mj2u-M>J-Hd5_as
zo0p=HVqA_QwBfu5LuD7
za?6;V1^q-W<-tB^<86@rifKtW0;>i6C^TH#Azlg?8~%>0*>E8lNC4_K*w=~8=UG*u
z9@0x?Omhg56A)ZK@-P&@YJpMKNP+6Y3%A3`jJguo&1rE8RUFJzRvCToJ&C&PBFc$`
z*PCif=ZVFv11sl}+6`zHhw^AxBy49z-vrS(-ZDyj4^I{@)u
z2zv%fNm8DfS=_bKE6+4s3c*`M$j6d!NnOcZM1;pe`$vR^UK#OOV#kmvlPNrJbCS_x
zD3w#mEXwiz7ZBcHsN^rsGe(8EpieL|x}EV&;F`i*3N7hu#U)brU|)wP?~mXvhG;R%
zdR^2*y}G)H$9U0k!SakTejZewz#IK+_mMh45KoB%f}Aof!n$c7f?)=9CQ&Jsgclk>
z2m##uX;(m*BINSwsqO{D5Fu=>Jed~#cK(lk^SK+njZNvyDB5hrkdD=AEXAVEeE8La(SJA+U@yc(&ulV7rE@R2g
zQd23QciAC@js8DUBNS?4KmQHY9dzZ{a~rM3O^~i_JeQ_jZud&cGR|~M22Q0&HbrY)bkL30%GD}
z5MRqZg%9M_6Jvuv$T!{Cm@
zf0B6b-)?o9q*0lAx}6@j_wQ);S}hdZH0*{*j(*9?^cFVzMxMf{iSD#al6P-*@`SDg-_Tb00hEhX5f0KG4aIS
zdO%7({#^ClT`{H2EJU<;-S%DPba`xRb6Z6B<+Is$$`+Vs*#YUbOusg)22}PkA0Bg;
z0KZ7h;2IT*HbCzhlAUoNHDAbL{gw4m#@M^@Ub0x*rTsrMJ5V%wBDu@v#{Ni)t~4nr0|wSh%WN+vR@oGjv1Ytl3daD&
zSh~`x?ajH8EJ=o;zxEX0m9)Cu{)kCB+Bc?`wa;+1FRf{nw^b7fue(+N<9$}&<{z1&
zgqo5uRZTyO!5HmwniYHQicOCzW`Gd@75oHtU;mT}!c+Pb>}hA{S&SX#2ugi#i%N`X
z_7oG>f7>lx>z&^@MZ9WC`eZGtubYFb1Y)o`Xu0P-@z!Q61jrOvr;XtrNq7*P5r1bZ
zD=Ok+%P@6|{=rRH-8k>ldZi^Wxu(tuZ0&5lXewvv1ZyOT9?HD^oYC=j*0r-Qt~T%OUWn$0O8
z%g<55YuZoQt)?XzP5OU1<
zVYYtVXgqN5;zRk=9yfmAaKKs3NqQlYu3DMd9hsoO>%7l=Z|ihHb6r~{BjERh
z^l#V6LBh(37dT|}ip|4~jZPlMQ`cG6Nzp6uxDv{Wl%zehwcMBrr
z=TZs)DLM-U<1cmau@6(JFh98*E~#fLl7^eTC$9m^3)}18=N`h12P;tl&pm3QI7VO1
zU$&VBlR0)jF-HBK{NZ+aU+0q4LJ^8`dZVu0B0O?VE
zWnFo-{f3Q?3ny6%7tGBCv3***+JK%Qn@y5dw|u@5Dc#Y4xR1f*s2tV$R7p^IrfLQt
zEpHqb;^QRttfq9E$Z*4F?Dz)`q@yZLj4a5huwuLG+yRap)z?Um1^)zLm_49_+)RMm1HV^EggeCw^e
zb-9~~J41Y_U6Qk9S%=SyNglhTV(B~nvO`Hhm+`V`6sT6?XHsB?b4CZZ%7qf(bm-?`
zs@6RW<3f0CgVN%woD^^mZcVaAw5`G?`&>qbTq|~O34hqg)j`TypdJZ^Qn$Lq#)8-?uXuUTgqzt4
zQog%_bQDgR)ryHeueqsv5y}oab3Mmq)}9e-0`fCbZ)8H0l}JAj4^(#~95(6E5jh@l
zW=q#^&=U)eU1~}{rkbEEMwX~SU(;`r7P1REuJT~|FEkDIOnS6x0IO&TM&CEyO|DO-
zwpBuJjv}g1xICp7hFkfsDOFuAUq~%I@s+Uxd+
z^YAkH46#(QiAdS)&tqw1fPby2;&A8y#-FUWh^`A~>G$TVf*7#17yr?6s#%bPoc
zag3Eh12)8IF_gy;<@_7|(Y7}0>!lD~yjT5v*iGWizmhHuTP2><9wtI$8P;{o_}Wt_
z=sHy*4tK$|=jibJ+~k$WcFE7f>#rwF5T~PWCA;w=k)!#(X{rWti>K?f`+NG&KVw`-mMdw20o1$CTf!40V>Iu5Gq4uM&MdO>-J2D1U#c}$uy1Mtq4_LK
z9C{@4Z&&ddK-2Ng0;+xC@?W1nV*F)lZK@1^Do#q_G#b>6wt@X%i6~p?VbiI=Xx9Jl&OxV$tII
zdL5P_Zeg!&Gc~8#8+gi`YT-F*)&1Yv;j`hf?_$2JiK*7BU^{YPrk|4tF({3$agGS*
z=d5E@)+2~60G!p7n%v#oJ{SMt9eW6HQ$q}|Dza!=cW?h`D!Hr#zZ)7`@Si*d>vB`L
z`+)Tp`fRWL86gQW62|u^=y?vaceL|dB?3$&7;_r{>}gDEQ2+Q;DLv_&lcLl}L6enc
zC}jQ>@qZS%@Lh@cIjqR_+%hfL3svCkaQ5qd6vs$M^*^qsvjU{TWYC5=HmG6ql81vRDJ
z8e=uTWFNj_wz*$j_-_B?nG~ZGR}kEdMP@
ztBX+M)h$+79P%Yy{hOYU$bY4)SLRO-5GI|TK;l8U|Q+UU&xg4uS;>=r*Fxz
z_6x&}J(oh%RCO#*)*N2^%`@1k)Lu)`2#H*;-T*HZeipP$QE`F#H>
zJPq+8OsO7JEXgK=<9*|U*3r&GqN6)H$QZiO?VWm%^N=1pTG@(0+iEE$!$CKJb=ThH
zrE~N|cb*JXHEZyzPugkP9XlGpu>Q9#HJ4WFPiwEm^|C%tCK{zTs6P*O&@qZV=KmcR
zgN=!cV{DSK;!UWYX)Z^`g!fEwXm7l3x+`Wn@{E0cZdgVHFcIxkQ)=uSp#G`)l}>%;
zJ@BAJ+~+xwwB3Bt+)D`B&OaP{s*v*F0jcNC)I`_mWxA9w;BEsW$^$^hiG;8w^M8!b
z2^J;w&P`7|(RyyF34Y`s~gS&H?y^^@uqrZ^
zP)yZDi<(!YkKT7m(GLl+vonRId2a^kWPmuhB-r2SdPK$vmyhQ83})0$$dhH8YfPu+
zjbH1zWD8qWN(05pB|N6Kw#{VU|DEj|T6KD#^S4mnpoX8^4Lht(DYb&Q?7w@`=%<*H
zdRNE)%JHwxMGVJK{_Q4#N0QTt2WcQZ%CY^H8Y)bPjpwr)YIw8eP
z3`hK3n)G}CM<{yf$Pgzv8Pjc05Brqo8*<-wH&fGUCbR@U?Jc{s;>kd{M&HVbp%g%n
z3`L?JG#?eh`uj)aW|v%5gocR(oCGe`#W5z#3@=4zqtu`ypbUEDg`rP5_uSAOYe?gY
zI#`16>)^)iA7qoXB9ojjKe4%!ODj`iN%3j#{CQ3us5EW=_)~Q+S2iE;Aqvgz(ssCH
zwf!${9Y}V-Lw7<#Gp#Pm=h(7uURAmowZ3QFt86isG^J^{g1oFJJlpv)trVj
zc4NYv2yrtX*p}$rFS~6sZ){Nim37oX?`LDbfNt2mkxFAN>lUo(0BW71*vvF{CCh;H
z5Jh}2t?%kjv~-?JjTPF>99439r}w-|&qQaMhg21rED$}-8xJIX7iOjqFJq5Vph`Hb
zIak;*38j%u8Tu=qE9^HM5O1_~Bbl-#$!%YiLxLy^L|kmOVg)TQt@)cZX6udBQkk{b
zbRb|1!4ozhhm|+r;B(B|VRMXd34%}{-ld`VwI1ryE)z{b8}sef2KOtPQ`*Lg-|1o_
z@!#>)dnv^+DG{pn(H`AAj!mvsX!&U)o|!trQ)8kKtE!6g^+m!w;dFl2u;auDjEa+YCQwQ9zyST8Yn*9g7;
z5F&7%Xwj5lfGwR$o`p>a6MR*REeJdZnL`(IodK$GZiz
zw$M1(MeTySOoQ7P7^!C{fw9H4q7U}tjTqC;Tzv}*vnDr4(K4Cq?a-K%B)HI~iEdmR
zCcf!1-ev8b^1Ny0-t;slLRhbt{sBaUT#N8UyMuNQFmm(`A^)--W4g6PXonI1W;SA&
zyw}1|AlNDGi#z|Cqc}c>WF{cY2iTe2-U{SvI0<0w38oWY;N(GNaxM51`mzp0g^O8p
z)tpasl!PT}Bfblc2a~~D-7C*%M-
zXja|(%%uO`sc-Hknq6rp(yov;Cl!f-#YW
zya4$d2dA^_>z`5g3Bv!@t(j&2xJ=i6b=2FjBvOMIc^Pv)2q`8A`jkBJWdQ9ybqp|_
zq15Us)j)m4Zkiw-Q6O`TU~=uGrvxMfI1oj7pSK0WTC@7(aqhH$P74_vAMWq>=`8Rc
zZ6G~JpX5tg=m}K8dt_IbsM20}|Lf-QW$ga(_T6>UPqI~fnuXo-6YY=@*)Y{2XkX#=
zN?w+UcHOLp&{7ml2IvuoM1pwYUj(>*A>=ZQ4MbWvsq+TzUOy}`WMj=*(c$~^OJmY
zR{x=!Og!I*#=8LV@z~0jGugPZs4rtFi|av?ajNQaVE@
z=a4E@cOt@L(ae$*ho>d?hLf;xz)CNY6wwh0>IIxH7VKLx&9)cegFWM=*td@oov3*D
zpF3$AS?qbcy^j(qPtlF-A@(I4FgH|xNj*%}DD~y)jrfQODPl2K@QEb+3E+U9XD0a9
z4?mm9xHu)3R#-`Rt%(n-%j*oA`O3+vjHKUtnoU)bH2gU(-|a*_etx)22{L*%ggTX0
zOnz5wq8bHy4G8zx`Xpg(fJe~k(wbg^(9mgZ2J3z{>MiZ5h3j}WR7}2mzQKy$v%0xz
z*c(X@w}Wwt^!L~x_=JpmeJ8`c
z!zR6WZn_md9RH?}oNLKKU?cl1%lOk1qhcjDkf%*;GN;M+WZH}W!j}xNx~;5|7vrx$%Y>f
ztyE460)+X4tu2jyPm==^f?txopo839(o29yHGexu;;#w6-In|gXH1Ajd3vPpHr(k)
zpkJO{8Rs^MNFf5JK?g#v)VUBRYMS}R#u2`1gOCx8$+5_hp
zvcqf7BAZ`259vqV?+qVfVw*B?X?+xnrp`*Qxrfk8SX6I~j`8lic&xJHuE$oR$
znVK`+<6oq-(0e~8>9-;i&ov-}pXz0IN#VhNpMV~-Z2H~RuWDRW%>Aap4+!wV(>IkT
zvB}j|r(AVI-LQjijv7((s^{&iuhdsqfu~D^Gu{!)yk9ZcK76%^2kr%f`?@X?;{fc#mj|
zb#e_2P_=2i`CfyNCMDc#fyDKE-;GoFNO|+aHqY3bkpSkf+h{}ZhFAhV-R1Bn$Js%_
zx99gDFMU3hPS>x>RRac#F84sW-to@f=NND%;-Ia#X2b5^_Zna!K2Gl7CCbX0O6Ae_
zqpR6-j*HKc{_&GKml|c~-V=)sTG#0S%UN)0jave&?MEH8t7zN1jDRa7hG;D#q&KLXB0)n4ZiO=
zfB)cc2&&C4VUDs)Z>;k(1NasMT>E7PW8+VK-te`~&dV+I*4XXhfOn7;<;{A*d;NZFPw
zK594Des+?(wH>f5$RR8-fhQ|Tt_78n!3QKq5wdaPI%jM)@{)7T-U(ujsTF($Bwv#b
zYI|1A(wZFhHY%7Bb60*mW5mW4LS2wDENaAeY@N!wA|^exNWr
z`)WgfFyxepKz{y@qY=Dw7ut~)L{TRRWcKTvQ=
zRt*u|*lE?syWmp&>ue@?p)nad=pbAoD?yky_qyI!c#7)JA!mdO5I9+$knwpTR*}XZ
z>wO9z@FkXK#(vNvTdtBN{=hayu`M69)N)s9W+ZLYeqrzB9M3;kE4wKCs<)JX0b(=%
z6@HMYz1}}wpAV^*OAYTa917fV@m9S}7Th?E{hiAX*g=?n89zoOxr#|aXU0rnb@NOt
zefX`t>i+tLxBC-j{bNe`C_7w$2k`<<{FBtZ2NHAXeI&KJA9|qkx%O6v63Iu*e?l`4
zL;8=ctHl1c>5}8Lj>-4oB
zOGG;H-*__8oyjHh%(YzEzYdwu!3)@uXZo0>P>Ek6{`+RqCdaniey6jEn0Ynr)lOK(BI{N+NZByE)jzl5S{aaf62x=|SLN4}YlhBuGYz>R2U+4f6XY7Y
zPk6Y{){M?igZvy1U;?~$H-6KGL#vHuE!O&L=u^ccIaj%E>kGD&I!?Zq%BU}&9T8_=
zycaJDGe!!!n0xsS!i`;&_Gb-=vrRemadl6O*u93R`v|o90lJ|`0?3V_b&FLV;a;IWt0&FjCwAw!k3(Sm&()S5{Y0+w#Xp=AW
zNpbBAVJ1We$4`{vu4K$4NnHL=cJ>CZa`=o~#8~Ek&PTshT76M9
zfgX3Yps!67$84XF+6TOe9=wJG10dt;Q+)*;wp6-qBL~rI_
zX^*7s)x`Dw+ic9uKV)=iLJn8Kv8&eIbTYg5ieUDoXgV29i5Va6A?(L1h26*O
z?wD0G39&O^&MGcSio(Ouu=o!p@Lq1AyjRt_c(-0_b`tPl+%9Oh7@K;h5W~T@qlu0P
zHgc31(O3~Qax}{*A!ww0Zv|x+5sZ?ZqlT$RffX*Zn4528Qa!e|V)z=Xe@RI`o&zY4
z^^(qI?0t0jYPo1KBzx^L*Fy4KCdY?oLpHjYD+RkS`NGsJkg3x;@1-DxhDQPwFO%+9
z-*V_vMp3W$j5LeLKmDM5-Zv`6v!<;U+z~oLLF}nt?rrS3D>d&t*Y+CuD2LA`110|!
z;P9~L9TG{~OZDv=aHj@Z$qIO{S*J=k+@C}DNH9VIQRA=nM<#?tbgHb##7SpT$a~bm
zmVJTk5nZ26Qa*P-4wOqb-k)wZ0X{YJHo7q1>~4zdJ@J8yvsFH8^tH_RDIDf*8SDRz
z7&LL3XIw@+_FtjwvOj2a4zpv=^*H<2*TER3w)}!JLYJZC*E6X2Apn-iGAjySyimMn
zG{3iqA?^kbH++X+KSBbimN|7
zXX>w?6Kz*rHCR$lPvUce#lAJ|I#2xYctlU7E2V6)eYXL**8nj|>wB=E1}rzB(+y~|
zmc{wCpPmQN4amC<`l=j0oFUln`qA=ZZR6QzhtEF|^5>pSLh5^cfqrye#3E^%+EL%r
z}Y}XUL#ywx=^pu45r^M$kj^Tz+BoEb*5UgBHop^gK`XQ2rUc
zdWUp`NZOPKwFRlr{o-Fb&V7m(b`5DlaNwpv4>vkSXjLwlfAC+}s-nRIYAt9Khrk5L
zi8;lkh*l5dn3@wM61DxAvebT>`9fPlrcHOU`(*YF^OW{43L54LkIOTg)$5f4h(GsG
zwz3qlV9MQGxMc}g5?6Jn5C?TF{?26Y$AjN>h{n=&_c4POH&E%K5ihWzlxK2_My9)^
zd;Sg~()Bl5zzB?TGV6^yUF_65RcDLzB8HSJd649z(05@>@|5EyhxJP)n6ueRhIhTE
z?P3!TtSx$2`~HbS!9VT=#Nh}d$K)C3Z=P)QZTy7A0sb1~q)Fk~3N7sYwb?XG&I
zy$nDPT_T2P7POa5cQs2e2XmHb9xt6S{w0OPo(hBJ%$`MscWxW?V_(S1^uT3z
z`4Q|Tj~oWKjGk|yWYHuY`rx=0*jOj$GLkYBvLt=YRT1E}&mu6STH#G~j>%dy8MJsX
zG=fih7iej(J?3JV7HVra@QdgLjHu?R)Q&^LA2z`&$=tvO16v%nb4mr7WeW_@uw7;r
z_%dj)1Eu(?o{GqZX}gQGJ>l>&(*qdkZn0uR)p~AiZ)B5m?;pme`ofa0B))j6zhK2V
z6#SsBIg|m~OE)#;4$dzCJga;*Qsvf{=0Rtj01e|Qs!>H=(5CA@bvFm~7%*dJ=W)i9
zwWora`_bhwyc~ER1c7<+m@3ko%(lvJY`kio&sjlA-Yh$t-`U-6_ERf)v#1B@JRXYR
z&**ucah<4`M=U1?>zR-d-ho4~Y*U2Z+vSWfP>zfXt3q-84<9-L=<-qOn4;=HH1vIP
zI0S*u%p*`Cqk(uP4a7(q1bO~(?s`S~l<2m;C{G@5JpWqn%op5?;iE3kF2{StAD^b)
z7Hurks&2A<-gSg=qJnShCIDaZjtKxqfUZ>0TYNnuAvl6fg3OVODfFMjvGt|xsKWOXXgyR#YT{2!$;pc=AC@#|zv>^xW}1=o+>+pUM*=70
zV#+G#nzJZn4f(wM{&qwyfvStjXObe_XWbT&|En-U(LyvhGO0ylPco9EU!c=U|9bpC
z2=d_MI!`$l0%HllEPO#|h~g_}-?3ZWSteF>DXc!Ptbj0Skxn>HEf(cVnP7a_QUNPCmVK2csbA#g2PshPOT9
xod35r?IC+3znZFT(@<Px#1ZP1_K>z@;j|==^1poj532;bRa{vG?BLDy{BLR4&KXw2B4p>Po=VtlNrcVsjFL+uPXHGzmNC#fAuFGaM`anY1QJdW?DZjGIUP5PbHQa<>0n%1#$9KoKvFYX`oD0DO
ze=accEx%aaHA5I-JNr%9F*U6TzXGJCRAbG!LBteug)Z)@82aWXe0^RgqLat4dIUDG
z!%c&N^S^4%vR|ORwnfykCj3HZRH?@5!aFD@GvJ@U3yxT_i+}DeBAm{rgf>@G;^0Jl
zNp*HDJhxJjn(!k~P*Bh^5{a~@rkUF+Cuh^PZRt788I|fNE_?(NrtqlNr}Emx-||g)
z_Ypy!pl4Vmh^VC09850{>{g@%NJe=m)K)&TtgJ&NB_+qLfqHN{ovsX6QHb;Xm6eqt
zMgB?Pa=DyZG-}f|EviUyL^RE2x7!1|cI^r)QUVGbj*byZyR>fGc4N8%{xNX7-4`$}
zc0i~#xo&664I4Hj@tg`wwMlRm7v9GReMnF;-csnsynCR_CxjqX$g9srIUgpd7=*BU
z4;Q3VErXTNTrRYAd~?2AkrF^dp%$F7J@_k+)`X`iasqTg=W#+yG5|$t6fgvPCx?6R
zs8ORdMM?=K$OA;v_e2Hx8h;;01od0sAq0rXTob#nr&+Mf2^WJOg
z=Uc-r_pW9Ae9y70R^6cNr`2+7N;{BbtFP}yDSZWkKNdB$`}yWhXK8{hZVK^`BEcre`TS(nqpDjUuoY4TBiN1i3;xfLYOC1
zCoLpqNAWN-R_)mWf%YO?ybu_%>`(kt_f$ezHz@69HS4s1q8Q)gS4k>^^eU+&k<{ZEA^?r(sY-sh~M9
z$Z}5UJMj3Lo;`costz2!jxg#VI-BqHdXItE9^mzIEVDB+vb1dP-h`qOY2+dsAp^Le
zEf5jBg0jaz-d7&*_leCwBsC1TM(I`fI|tG8B>4NPJP`P&8cy_7qqyW6OQ8U#Vzou2
zvqH53CUAtRW
zSj2RoWquA1Jr%+P2{Y5YkUacw{dZXc4Rihi8XpcgRaTagCc&tPV2`-a!-UR9j?HdS
zTQk&O;eTDXXHI~Zi>RjES&n{>OD-7*fggv`cfz6vmk0er;T1oq&{wiW+k
zcjAP1O^g!J8vIGQ;KoK`-pTcYvVn&dK$$OL`dsAY2jIO6Q76p8{3|N`{)^>I@ckv^
zs=?6C${+%~1uleFAp!~HWpQ49etx#xtCL}jgfUIQ`Wvv%Gv$8&a-3xZ3@9Gz5v^L_
zoX;a#JcTn(_6CEGqb3-jbG|@Lv5=TkDebPF2sfEErrF3B79m}<$c!r#Rq_#CM8AM#
zws&6SKTDD0kk=J1_=7lfOT6w8MV6?62U|*&p$&WuL3mrS^S}Wsgj=DSl3if92fFbT
zf`_yV3PE{6p3`|%p38N$C)YW_dJmvS^lEqtY?-_d!`Or{dbBJM*levKTpBkn1YsFP
zkZZ_|n3rKv`iAUFfQRi?BSgj@_)>QNg
z20w~Tv4GTH&$y3=+hIuytUIho5~8G{VxM}pkf2nUXS^?{+0A+g8?YJQ*P*
zf0!=@Vvib~>slv=BhSjmgn8stL;~yM4EC`ig2r%}s)yJag|OLdW^Qh-9gmWq?JK~7
znv#U-X!U-)9<>L(<9x$tt;k78P!&aT_88gH0UM$SC#S6l8$xIFcG*JcAJE?3
z7jxgbE*rw=Q#vd^UNwVx3hS=Rc{qglvs4^2#WU!iQWC(CYGe!Hj6qo|^W`)sVKff6
z0%P}MNE|$PP)1`ZA#v!?A=ESJMH3;|89z>>3%}p5!;CJh`CK{})B
zJWkh(vdUJ&77_%}F1O`kcv$T79wj>A+QOb&C#I|-8-j0f=R@*K!NeA#MXr>;+&GKJ
z7Gk49lSOB%X%>)Yn&G6Dvg&}B+zTrYnS#tgSZ%4uD5oJhiMsYj0v>J&8P#pdb75S1
zz3Qa|*b@|CQwHotdBP-JMv+J~dRn7Him}E}&1PBzg;AqM;nXxKZIuOmD|CBCSMc!<
z7}f1nhrf^CI3yBYw5`{I2z=`nOs=a8dmr9cJr8X{NNkA6rn~_n%r;=w8p^^0S?|j4
zovX(E9;x^>xX`r9VQ=qMQ|oXxP7qg|M2QT4DDzPWIAB=Q6`A0QWPSUE653dV6bOgI
zQoP_1MMNV&G>8d_ij3VJt#WY_o=*k^pHuh$10a
zfudMI^g8tkRAg8mM8I1ItFK_C6%=Bsn}E{N(!(YtvO4x*ui=VpA<24zBNu-T9_rmo
z#jQs1*cZw2#BZv6L%ut@F>kcF(X)UFaThAxBG#w;7AQ32Tv<2)FI$Pkyv#p*=__i9
z1^E#HW6j`!N!4(uwsy8;5`r^iAtY(&qsj%Ng2pf3b&z*K*+wF$ZKRrFg;Qg&%YRU)
z#P6C3sIAR}LQ&OlYhHcG!c1BY_{&_eVuidTmZ6h<D_TtnU=
zE#QokjST%mj-BK}6$`g_+o-@CDuQ9N!Ds*pusWJ8Nk^fpX|
zUQVI9x;h&NMCD4Y`&oU&z5t1P@rX6T5(*@@7QLegVYkSyL2kFZoyX(pEWbKc`23rs
z@N#l;V6;R=m!9$$9{I7N{=GL5+)^erh4o8OLzucQ`I4TWq;%X3tT99ltMY_G-$A2k
zLcH49<+`*>$Bu1e@sek_mR5KJ)&~^?^BidfK*D}dVjC$3PI)VNZp`@v)6TJL`dqme
z_P7%-LM*z9HbG#D9>Y07ixje
z!ZzF2(BiF>k-vK@{8k--eINtzZ^n58Bev+@3MMRtnT$+D|4SImO^AB0b1K?I1s{a>
z$$Rhde8X@fWwixElf!ywpWAT4JK3{T@F}u*l6%x4`B3!%6ERj5&Vr}TP?Q*8W>{H{
zwn5i>`;4yoAYT%2_6q{dnMC`HzyB
zP5%+?mqc1hl`z(f^FVFSBD~5 {
return (
@@ -18,7 +19,10 @@ const AppFooter = () => {
{' '}
-
+
+
+
+
From 24b5cb2104afd39ad5df2ef7b0dd181aab0381e1 Mon Sep 17 00:00:00 2001
From: John Duprey
Date: Wed, 16 Aug 2023 12:16:36 -0400
Subject: [PATCH 55/56] BPA - Single Tenant/Table Refresh
---
.../tenant/standards/BestPracticeAnalyser.js | 66 +++++++++++++++----
1 file changed, 54 insertions(+), 12 deletions(-)
diff --git a/src/views/tenant/standards/BestPracticeAnalyser.js b/src/views/tenant/standards/BestPracticeAnalyser.js
index f12b3b9d1e90..68356121e425 100644
--- a/src/views/tenant/standards/BestPracticeAnalyser.js
+++ b/src/views/tenant/standards/BestPracticeAnalyser.js
@@ -14,6 +14,7 @@ import {
CSpinner,
} from '@coreui/react'
import useQuery from 'src/hooks/useQuery'
+import PropTypes from 'prop-types'
import { Field, Form, FormSpy } from 'react-final-form'
import { RFFCFormInput, RFFCFormSelect } from 'src/components/forms'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
@@ -25,6 +26,7 @@ import {
faCheck,
faCross,
faTimes,
+ faSync,
faExclamation,
} from '@fortawesome/free-solid-svg-icons'
import { CippTable, cellBooleanFormatter } from 'src/components/tables'
@@ -38,10 +40,15 @@ import { CellTip, cellGenericFormatter } from 'src/components/tables/CellGeneric
import { useExecBestPracticeAnalyserMutation } from 'src/store/api/reports'
import { ModalService } from 'src/components/utilities'
import { cellTableFormatter } from 'src/components/tables/CellTable'
-const RefreshAction = () => {
- const [execBestPracticeAnalyser, { isLoading, isSuccess, error }] =
- useExecBestPracticeAnalyserMutation()
+const RefreshAction = ({ singleTenant = false, refreshFunction = null }) => {
+ const tenantDomain = useSelector((state) => state.app.currentTenant.defaultDomainName)
+ const [execBestPracticeAnalyser, { isLoading, isSuccess, error }] =
+ useLazyGenericGetRequestQuery()
+ var params = {}
+ if (singleTenant) {
+ params['TenantFilter'] = tenantDomain
+ }
const showModal = () =>
ModalService.confirm({
body: (
@@ -51,18 +58,39 @@ const RefreshAction = () => {
Please note: this runs at 3:00 AM UTC automatically every day.
),
- onConfirm: () => execBestPracticeAnalyser(),
+ onConfirm: () =>
+ execBestPracticeAnalyser({
+ path: 'api/BestPracticeAnalyser_OrchestrationStarter',
+ params: params,
+ }),
})
return (
-
- {isLoading && }
- {error && }
- {isSuccess && }
- Force Refresh All Data
-
+ <>
+
+ {isLoading && }
+ {error && }
+ {isSuccess && }
+ {(singleTenant && 'Refresh Tenant Data') || 'Force Refresh All Data'}
+
+ {refreshFunction !== null && (
+ {
+ refreshFunction((Math.random() + 1).toString(36).substring(7))
+ }}
+ className="m-1"
+ size="sm"
+ >
+
+
+ )}
+ >
)
}
+RefreshAction.propTypes = {
+ singleTenant: PropTypes.bool,
+ refreshFunction: PropTypes.func,
+}
const getsubcolumns = (data) => {
const flatObj = data && data.length > 0 ? data : [{ data: 'No Data Found' }]
@@ -96,6 +124,7 @@ const getNestedValue = (obj, path) => {
}
const BestPracticeAnalyser = () => {
const [reportTemplate, setReportTemplate] = useState('CIPP Best Practices v1.0 - Table view')
+ const [refreshValue, setRefreshValue] = useState('')
const { data: templates = [], isLoading: templatesfetch } = useGenericGetRequestQuery({
path: 'api/listBPATemplates',
})
@@ -184,9 +213,10 @@ const BestPracticeAnalyser = () => {
tenantFilter: tenant.customerId,
Report: reportTemplate,
SearchNow: SearchNow,
+ refresh: refreshValue,
},
})
- }, [Report, execGraphRequest, tenant.defaultDomainName, query])
+ }, [Report, execGraphRequest, tenant.defaultDomainName, query, refreshValue, reportTemplate])
return (
<>
@@ -264,7 +294,12 @@ const BestPracticeAnalyser = () => {
data={graphrequest.data.Data}
isFetching={graphrequest.isFetching}
tableProps={{
- actions: [],
+ actions: [
+ ,
+ ],
}}
/>
@@ -273,6 +308,13 @@ const BestPracticeAnalyser = () => {
{graphrequest.isSuccess && QueryColumns.set && graphrequest.data.Style == 'Tenant' && (
<>
+
+
+
{graphrequest.data.Columns.map((info, idx) => (
From d055e2066fc9ac8e287509c811b3475582f811ea Mon Sep 17 00:00:00 2001
From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com>
Date: Thu, 17 Aug 2023 01:13:41 +0200
Subject: [PATCH 56/56] version upped for hotfix
---
public/version_latest.txt | 2 +-
version_latest.txt | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/public/version_latest.txt b/public/version_latest.txt
index 0c89fc927e32..cc868b62c301 100644
--- a/public/version_latest.txt
+++ b/public/version_latest.txt
@@ -1 +1 @@
-4.0.0
\ No newline at end of file
+4.0.1
\ No newline at end of file
diff --git a/version_latest.txt b/version_latest.txt
index 0c89fc927e32..cc868b62c301 100644
--- a/version_latest.txt
+++ b/version_latest.txt
@@ -1 +1 @@
-4.0.0
\ No newline at end of file
+4.0.1
\ No newline at end of file